📌  相关文章
📜  如何在java代码示例中检查数字是否为整数

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

代码示例2
//"% (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");
}