In this section, you will learn to convert Pounds To Kilograms. The following program helps you in converting Pounds To Kilograms.
Convert Pounds To Kilograms
In this section, you will learn to convert Pounds To
Kilograms. The following program helps you in converting Pounds To Kilograms.
Code Description:
To convert Pounds To Kilograms we have used a formula "kilo = pound *
0.45;". The compiler will ask to enter the number of Pounds from
the keyboard due to the method "BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));".
Here we have taken pound to be of type Int. To avoid loss of precession
we have cast the output to be in double.
Here is the code of the program:
|
Output of the program:
C:\unique>javac PoundsTokg.java C:\unique>java PoundsTokg Enter the Pounds: 2 Kilo: 0.9 C:\unique> |