Home Tutorial Java Corejava Dataconversion Float Conversion from float to short

 
 

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

Conversion from float to short:

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

Description:

This program will take a float value from console and provides a conversion to short type data. The line float myfloat = Float.parseFloat(buffreader.readLine()); reads the float type data from console. The line short myshort = (short)(myfloat); converts the myfloat float type value to myshort short type value.

Code:

import java.io.*;

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

Output:

Download this code

Related Tags for Conversion from float to short:


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.