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{
|
Output this program.
| C:\corejava>java FloatToInt 9,9.0 C:\corejava> |
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.
Ask Questions? Discuss: Convert Float to Integer
Post your Comment