Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Math Exercises: Test if a double number is an integer

Java Math Exercises: Exercise-3 with Solution

Write a Java program to test if a double number is an integer.

Sample Solution:

Java Code:

import java.util.*;
public class Example3 {
 public static void main(String[] args) {
  double d_num = 5.44444;
  if ((d_num % 1) == 0) {
   System.out.println("It's not a double number");
  } else {
   System.out.println("It's a double number");
  }
 }
}

Sample Output:

It's a double number

Flowchart:

Flowchart: Test if a double number is an integer.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to get whole and fractional parts from a double value.
Next: Write a Java program to round a float number to specified decimals.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe