📄 outputtest.java
字号:
/** * <p>Title: OutputTest</p> * <p>Description: OutputTest</p> * <p>Copyright: Copyright (c) 2003</p> * <p>Company: BNU</p> * @author Sun Yilin * @version 1.0 */public class OutputTest { //Main method public static void main(String[] args) { char c_Char = 'a'; String s_String = "This is a string."; int i_Int = 12345; boolean b_Boolean = true; double d_Double = 3.1415926; String s_Chinese_String = "中文字符串的输出。"; System.out.println("Char = " + c_Char); System.out.println("String = " + s_String); System.out.println("Int = " + i_Int); System.out.println("Double = " + d_Double); System.out.println("Boolean = " + b_Boolean); System.out.println("Chinese_String = " + s_Chinese_String); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -