Home Java Java-conversion Convert Liters To Gallons



Convert Liters To Gallons
Posted on: February 27, 2008 at 12:00 AM
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:

import java.io.*;
import java.util.*;

class LtrsToGallons{
  public static void main (String[] args)throws Exception{
  //1 Liter = 0.264172052358148 Gallons;
  BufferedReader bf = new BufferedReader(new 
 
InputStreamReader(System.in));
  System.out.print("Enter the Liters:");
  int liter = Integer.parseInt(bf.readLine());
  double gallon = liter * 0.264172052358148;
  System.out.println("Gallons: " + gallon);
  }
}

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>

Download this example.

Related Tags for Convert Liters To Gallons:
cconvertiohelpthisprogramtolearnrameareilitsectionliinconvertingmpsallprosgalisllfolloweaarrtwingssthgapronogrolo


More Tutorials from this section

Ask Questions?    Discuss: Convert Liters To Gallons  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

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.