文静秋天

文章
1
资源
0
加入时间
3年0月9天

Java的输入输出

Java的输出在前面的代码中,使用了很多次 System.out.println() 来向屏幕输出一些内容。println 是 print line 的缩写,表示输出并换行。因此,如果输出后不想换行,可以用 print() :public class Main { public static void main(String[] args) { System.out....