write a program Take a real number as an input and display the integral part and the fractional part of the
number.
Answers
Answered by
1
program to print the integer part and fractional part of a given number
class IntFraction
{
public static void main(String args[])
{
// input in the form of double
double input=23445.781271;
/* convert the double to string and split the string by decimal point(.)*/
String str[]=Double.toString(input).split("\\.");
//then str[0] will have the integer part and str[1] will have fraction part
System.out.println("Decimal Number :"+input);
System.out.println("Integer Part:"+str[0]);
System.out.println("Fractional Part :"+str[1]);
/* Note : use ("\\.") to split a string because just (.) represent split a string with any character in terms of regular expression*/
}
}
Similar questions
English,
2 months ago
World Languages,
2 months ago
Social Sciences,
2 months ago
Math,
4 months ago
Science,
4 months ago
Chemistry,
9 months ago
Math,
9 months ago