In this section, you will learn to convert Gallons To Liters. The following program helps you in converting Gallons To Liters.
Convert Gallons To Liters
In this section, you will learn to convert Gallons To Liters.
The following program helps you in converting Gallons To Liters.
Code Description:
To convert Gallons To Liters we have used a formula "liters = gallon
* 3.7854118;". The compiler will ask to enter the number of
Gallons from the keyboard due to the method "BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));".
Here we have taken gallon 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 GallonsToLtrs.java C:\unique>java GallonsToLtrs Enter the Gallon:1 Liters: 3.7854118 C:\unique> |