public class HelloWorld {
public static void main(String[] args) {
// 变量保存成绩
int score = 53;
// 变量保存加分次数
int count = 0;
System.out.print("加分前成绩"+score);
System.out.print();
//打印输出加分前成绩
while(score<60){
score++;
count++;
}
System.out.print("加分后成绩"+score);
System.out.print();
System.out.print("共加了"+count+"次");
在java中实现换行有两种方式:
在System.out.print输出语句后面加\n,
使用System.out.println语句进行输出,自动带换行效果
方便请采纳。换书看,努力攒分中...
在输出语句后面加\n,
比如 System.out.print("加分后成绩"+score+"\n");