In this section, you will learn to convert Kilograms To Pounds. The following program helps you in converting Kilograms To Pounds.
Convert Kilograms To Pounds
In this section, you will learn to convert Kilograms To Pounds.
The following program helps you in converting Kilograms To Pounds.
Code Description:
To convert Kilograms To Pounds we have used a formula "pound = kilo *
2.20462262;". The compiler will ask to enter the number of Kilograms
from the keyboard due to the method "BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));".
Here we have taken kilo 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 kgsToPounds.java C:\unique>java kgsToPounds Enter the Kilogram: 2 Pounds: 4.40924524 C:\unique> |