Home Java Java-conversion Convert Float to Integer



Convert Float to Integer
Posted on: July 4, 2007 at 12:00 AM
In this section, we will learn to convert a float type data into an integer.

Convert Float to Integer

     

In this section, we will learn to convert a float type data into an integer. 

Code Description:

In this program, first of all we declare a float variable named 'f'. Which is stored the value  '10.0F'. Here the is the '10.0F' is used for  representing the float type number. If the F can't be applied at the end of the value, the result has been a double and it is not a float. 

For converting the float type value into an integer, we simply applied the type casting process and get the integer value.

Here is the code of this program:

public class  FloatToInt{
  static float f = 10.0F;
  
  public static void main(String arg[]){
  int i = (int)f;
  System.out.println("Float data: " + f);
  System.out.println("Integer data: " +i);
  }
}

Download this program:

Output this program.

 C:\corejava>java FloatToInt
 9,9.0
C:\corejava>

Related Tags for Convert Float to Integer:
cfloatvariablesedtypedoublevaluenumbernameriathisappifforieprogramtoramstoreeitnotcanlivaruseulresultpefirstinnoasmntcaclesdeclareendallnamedmeproppdostoredtorwhichssueeatisirhallpreandarreprvassrithstabablapalueclplprndogro


More Tutorials from this section

Ask Questions?    Discuss: Convert Float to Integer  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

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.