w3resource

Java: Get whole and fractional parts from a double value

Java Math Exercises: Exercise-2 with Solution

Write a Java program to get whole and fractional parts from a double value.

Sample Solution:

Java Code:

import java.util.*;
  public class Example2 {
  public static void main(String[] args) {
  double value = 12.56;
  double fractional_part = value % 1;
  double integral_part = value - fractional_part;  
  System.out.print("\nOriginal value: "+value);
  System.out.print("\nIntegral part: "+integral_part);
  System.out.print("\nFractional part: "+fractional_part);
  System.out.println();  
  }
}

Sample Output:

Original value: 12.56                                                  
Integral part: 12.0                                                    
Fractional part: 0.5600000000000005

Flowchart:

Flowchart: Get whole and fractional parts from a double value.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to round up the result of integer division.
Next: Write a Java program to test if a double number is an integer.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/math/java-math-exercise-2.php