Home Tutorial Java Corejava Dataconversion Double Conversion from double to char

 
 

Conversion from double to char
Posted on: September 9, 2010 at 12:00 AM
In this tutorial we will learn how to convert a double type value to char type value.

Conversion from double to char:

In this tutorial we will learn how to convert a double type value to char type value.

Description:

This program will take a double value from console and provide the conversion to char type. The line double mydouble = Double.parseDouble(buffreader.readLine()); reads the double type value from console. The line char mychar = (char)(mydouble); converts the mydouble double type value to mychar char type data.

Code:

import java.io.*;

class doubletochar {
public static void main(String[] args) {
try {
// Reads the value from console
BufferedReader buffreader = new BufferedReader(new InputStreamReader(System.in));
System.out.println("---Data Conversion from double type to char type---");
System.out.println("Enter double type value: ");
// Read double type data
double mydouble = Double.parseDouble(buffreader.readLine());
// Convert double type data to char type
char mychar = (char)(mydouble);
System.out.println("Converted value from double type to char type is : " + mychar);
} 
catch (Exception e) {
System.out.println(" Error " + e);	
}
}
}
 

Output:

Download this code

Related Tags for Conversion from double to char:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.