public class Test{
public static void main(String[] args){
System.out.println("100-200间不能被3整除的数有:");
int j = 0;//换行标志数
for(int i=100;i<=200;i++){
if(i%3!=0){
System.out.print(i+" ");
j++;
}
if(j%10==0){//每输出10个数,换行
System.out.println();
}
}
}
}
希望你喜欢!
for(int i=100;i<=20;i++){
if(i%3!=0){
System.out.println("不能被3整除的数有:“+i);
}
}
for(int i=100;i<=200;i++){
if(i%3!=0){
System.out.println(i);
}
}
运行就可以了!!!!!!
public class A{
public static void main(String[] args) {
for(int i=100;i<200;i++){
if(!(i/3==0)){
System.out.println(i);
}
}
}
}
public class test3 {
public static void main(String[] args) {
for(int i=100;i<=200;i++){
if(i%3!=0){
System.out.print(i+" ");
}
}
}
}