为什么最后输出里面的(d)不能改为(h)
int d=0;
for(int h=1;h<=10;h++) {
d=d+h;
if ((h>2)&&(h%3==0)){
System.out.println(d);
break;
}System.out.println(d);
}
System.out.println(d);
int d=0;
for(int h=1;h<=10;h++) {
d=d+h;
if ((h>2)&&(h%3==0)){
System.out.println(d);
break;
}System.out.println(d);
}
System.out.println(d);
2019-06-18
举报