Q:

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

0

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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

In this demo I have used NetBeans IDE 8.2 for debugging purpose. But you can use any java programming language compiler as per your availability..

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

Result:

It is a double number

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Write a Java program to round up the result of int... >>
<< Write a Java program to round a float number to sp...