System.out.println("加分前的成绩:"+score);
while(score<60){
score++;
count++;
}
System.out.println("加分后的成绩:"+score);
System.out.println("加分次数:"+count);
while(score<60){
score++;
count++;
}
System.out.println("加分后的成绩:"+score);
System.out.println("加分次数:"+count);
3.Eclipse IDE 汉化包 中国科技大学开源镜像地址:http://mirrors.ustc.edu.cn/eclipse/technology/babel/babel_language_packs/R0.17.0/2019-06/BabelLanguagePack-eclipse-zh_4.12.0.v20190713060001.zip
4.汉化方法:将下载的汉化包解压,并将解压后的两个文件夹(features和plugins)复制到IDE的安装目录下,https://jingyan.baidu.com/article/73c3ce28585627e50243d942.html
4.汉化方法:将下载的汉化包解压,并将解压后的两个文件夹(features和plugins)复制到IDE的安装目录下,https://jingyan.baidu.com/article/73c3ce28585627e50243d942.html
2019-08-23
建议将任务中num的起始值默认给定为0,因为五十以内0也是偶数;虽然循环会多执行一次+2,但是尊重了数学逻辑的严谨性!感谢
2019-08-21