Given different type of values and we have to convert and print them in string format.
class ConvertIntoString
{
public static void main(String args[])
{
//define different type of values
int intVal=120;
float floatVal=12.34f;
double doubleVal=2345.0d;
boolean booleanVal=true;
System.out.println("After converting into string");
//printing values in string format
System.out.println("String value of intVal: "+ String.valueOf(intVal));
System.out.println("String value of floatVal: "+ String.valueOf(floatVal));
System.out.println("String value of doubleVal: "+ String.valueOf(doubleVal));
System.out.println("String value of booleanVal: "+ String.valueOf(booleanVal));
}
}
Output
Complie: javac ConvertIntoString.java
Run: java ConvertIntoString
Output
After converting into string
String value of intVal: 120
String value of floatVal: 12.34
String value of doubleVal: 2345.0
String value of booleanVal: true
Consider the program:
Given different type of values and we have to convert and print them in string format.
Output
need an explanation for this answer? contact us directly to get an explanation for this answer