为什么显示不自动换行呀

来源:5-1 编程练习

慕移动6959586

2016-08-22 16:17

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

        

        

        

        

      


写回答 关注

2回答

  • 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"); 


Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题