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> |

|