📄 welcome4.java
字号:
// Welcome4.java
// Printing multiple lines in a dialog box
import javax.swing.JOptionPane; // import class JOptionPane
public class Welcome4 {
public static void main( String args[] )
{
JOptionPane.showMessageDialog(
null, "Welcome\nto\nJava\nProgramming!" );
System.exit( 0 ); // terminate the program
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -