问一个java问题。从键盘上输入一个整数,判断是否能被3或者5整除。要使用if-else选择结构,

2024-12-30 22:07:04
推荐回答(3个)
回答1:

Scanner scan = new Scanner(system.in);
int input = scan.NextInt();
if(input%3==0||input%5==0){
system.out.println("能被3或者5整除");

}else{
system.out.println("不能被3或者5整除");
}
望采纳

回答2:

if ( (x % 3 ==0) || (x % 5 == 0)) {
//正确

} else {
//错误

}

回答3: