Convert Decimal To Fraction

In this example, you will learn how to convert decimal number to Fraction.

Convert Decimal To Fraction

In this example, you will learn how to convert decimal number to Fraction.

Convert Decimal To Fraction

Convert Decimal To Fraction

     

In this example, you will learn how to convert decimal number to Fraction. The following program you convert it into the decimal to fraction value by using doubleValue() method..

Code description:

In this program you will also learn how to convert a decimal number into fraction with the help of valueOf() method. Define the class named "DecimalToFraction" for the java component. This program takes a string type value and store it in an integer type variable by using parseInt() method which converts decimal number into fraction by using doubleValue() method.

Here is the code of this program:

import java.io.*;
import java.lang.*;

public class DecimalToFraction{

  public static void main(String args[]) throws IOException{
  BufferedReader buf = 
  new 
BufferedReader(new InputStreamReader(System.in));
  System.out.println("Enter the decimal number");
  String s = buf.readLine();
  int in = Integer.parseInt(s);
  double d= Double.valueOf(in).doubleValue();
  System.out.println("Fraction is:=" + d);
  }
}

Download of this program:

Output of this program.

C:\corejava>java DecimalToFraction
Enter the decimal number
23
Fraction is:=23.0
C:\corejava>