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. 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.*;
|
Output of this program.
C:\corejava>java DecimalToFraction Enter the decimal number 23 Fraction is:=23.0 C:\corejava> |