Print multiple lines output in java without using a new line character

前端 未结 9 1987
轮回少年
轮回少年 2020-12-18 15:40

this is one of the interview question. I am supposed to print multiple lines of output on command line, without using the newline(\\n) character in java. I trie

9条回答
  •  佛祖请我去吃肉
    2020-12-18 16:14

    One way is this: Platform Independent

    final String EOL = System.getProperty("line.separator");
    System.out.println('1' + EOL + '2' + EOL + '3' + EOL + '4' + EOL + '5');
    

    This is Platform Dependent

    char eol = (char) 13;
    System.out.println("" + '1' + eol + '2' + eol + '3' + eol + '4');
    

提交回复
热议问题