Home Tutorial Java Corejava Dataconversion Long Conversion from long to float

 
 

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

Conversion from long to float:

In this tutorial we will learn how to convert a long type value to float type value.

Description:

This program will take a long type value from console and provide the conversion to float type. The line long mylong = Long.parseLong(buffreader.readLine()); reads the long type value from console. The line float myfloat = (float)(mylong); converts the mylong long type value to myfloat float type value.

Code:

import java.io.*;

class longtofloat {
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 long type to float type---");
System.out.println("Enter long type value: ");
// Read long type data
long mylong = Long.parseLong(buffreader.readLine());
// Convert long type data to float type
float myfloat = (float)(mylong);
System.out.println("Converted value from long type to float type is : " + myfloat);
} 
catch (Exception e) {
System.out.println(" Error " + e);	
}
}
}
 

Output:

Download this code

Related Tags for Conversion from long to float:


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.