为什么one/2==0就为偶数啊
public class HelloWorld {
public static void main(String[] args) {
int one = 20 ;
if(one/2==0){ //one为20除2 不==0啊
System.out.println(one+"是偶数");
偶数是能被2整除的数 ==0 就带表能被2整除吗??????
}
}
public class HelloWorld {
public static void main(String[] args) {
int one = 20 ;
if(one/2==0){ //one为20除2 不==0啊
System.out.println(one+"是偶数");
偶数是能被2整除的数 ==0 就带表能被2整除吗??????
}
}
2019-05-05
举报