Answers for "conver double to int java"

8

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 );	//casting
        System.out.println( Math.round(decimal * 10) / (double) 10);	//Math.round()
        System.out.println( decimal % 1);	// modulus
        System.out.println( Integer.parseInt( String.valueOf(decimal).substring(0, String.valueOf(decimal).indexOf(".")))); // .substring()
    }
}
Posted by: Guest on February-17-2020
1

java casting to int

//In java, you can cast to any primitive type by putting (primitiveType)
//before whatever you're casting to.

private static int myInt = (int)myDouble;
Posted by: Guest on November-22-2020
8

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 );	//casting
        System.out.println( Math.round(decimal * 10) / (double) 10);	//Math.round()
        System.out.println( decimal % 1);	// modulus
        System.out.println( Integer.parseInt( String.valueOf(decimal).substring(0, String.valueOf(decimal).indexOf(".")))); // .substring()
    }
}
Posted by: Guest on February-17-2020
1

java casting to int

//In java, you can cast to any primitive type by putting (primitiveType)
//before whatever you're casting to.

private static int myInt = (int)myDouble;
Posted by: Guest on November-22-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language