📄 printdemo.java
字号:
class PrintDemo{
public static void main(String args[]){
Object o="an examle";
char c[ ]={'a','b','c','d','e'};
byte b[ ]={'f','g','h','i','j'};
System.out.println(true);
System.out.println('C');
System.out.println(100);
System.out.println(200000L);
System.out.println(13.6F);
System.out.println(2346.99D);
System.out.println("a student");
System.out.println(o);
System.out.println(c);
System.out.write(b,0,2);
System.out.println( );
System.out.write(b[0]);
System.out.flush( );
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -