Answers for "from int to double java"

10

string to double java

public class stringtodouble {
	public static void main(String args) {
    	String string = "1.23";
      	double decimal = Double.parseDouble(string);
    }
}
Posted by: Guest on February-26-2020
4

java int to double

// Primitive type
int myInt = 5;
double myDouble = (double)myInt;		// explicit cast
myDouble = myInt;						// implicit cast
// Object type
Double myDouble = new Double(myInt)		// via constructor
myDouble = Double.valueOf(myInt)		// via valueOf
Posted by: Guest on February-13-2021
3

int to double java

Double d= new Double(i);//first way  
Double d2=Double.valueOf(i);//second way  
Posted by: Guest on August-10-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language