这个不能用while或do...while循环吗?
int newscore = score;
while(score<60){
newscore++;
count++;
}
system.out.println(score);
system.out.println(newscore);
int newscore = score;
while(score<60){
newscore++;
count++;
}
system.out.println(score);
system.out.println(newscore);
2015-04-22
举报