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