📜  java 检查是否为 int - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:28.156000             🧑  作者: Mango

代码示例3
//"% (modulo)" calulates the remainder when the value on the left is divided by the value on the right

float number = 20;

if(number%1 == 0){
    println("It is an integer");
} else {
    println("It is not an integer");
}