问答详情
源自:5-1 编程练习

为什么显示不自动换行呀

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+"次");

        

        

        

        

      


提问者:慕移动6959586 2016-08-22 16:17

个回答

  • JustWannaHugU
    2016-08-23 14:30:44

    在java中实现换行有两种方式:

    1. 在System.out.print输出语句后面加\n,

    2. 使用System.out.println语句进行输出,自动带换行效果

      方便请采纳。换书看,努力攒分中...

  • 慕移动6959586
    2016-08-22 16:20:51

    在输出语句后面加\n,

    比如 System.out.print("加分后成绩"+score+"\n");