所谓怀念
2018-07-08 10:16
大神给看看吧
打印输出写在了for循环里当然会一直输出,循环几次就会输出几次
int score =53;
//变量保存加分次数;
int count=0;
System.out.println("加分前成绩:"+ score);
while (score<60)
{
count++;
score++;
}
System.out.println("加分后成绩:"+score);
System.out.println("加了"+count+"次");
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题