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> |
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 Gallons To Liters
Post your Comment