System.out.println();是换行语句吗?
int i = 1;
while ( i<=5 ) {
System.out.println(i++);
}
上面的语句没有换行,为什么可以自动换行?
注意区分println和print的区别。
ln的意思就是换行。