class Demo2{ public static void main(String[] args){ int x=55; if (x%3==0&&x%5==0&&x%7==0){ System.out.println(x+"能同时被整除"); }else{ System.out.println(x+"不能同时被整除"); } }
}
对于出错问题,首先看看错误原因:可能是少了(大)括号、分号。
class Demo2{ public static void main(String[] args){ int x=55; if (x%3==0&&x%5==0&&x%7==0) System.out.println(x+"能同时被整除"); else System.out.println(x+"不能同时被整除"); }
}
结果:55不能同时被整除