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.

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.

Convert 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.