how to convert a double into a decimal in java code example
Example 1: how to change double to int in java
class Scratch{
public static void main(String[] args){
double decimal = 5.7;
System.out.println( (int) decimal );
System.out.println( Math.round(decimal * 10) / (double) 10);
System.out.println( decimal % 1);
System.out.println( Integer.parseInt( String.valueOf(decimal).substring(0, String.valueOf(decimal).indexOf("."))));
}
}
Example 2: convert int to double with 2 decimal places java
double angle = 20.3034;
DecimalFormat df = new DecimalFormat("#.00");
String angleFormated = df.format(angle);
System.out.println(angleFormated);