📄 demooptionpanel.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package swing;import javax.swing.JOptionPane;/** * * @author zhaolin */public class DemoOptionPanel{ public static void main(String[] args) { String value1 = JOptionPane.showInputDialog(null, "输入第一个数:"); int iValue1 = Integer.parseInt(value1); String value2 = JOptionPane.showInputDialog(null, "输入第二个数:"); int iValue2 = Integer.parseInt(value2); int result = iValue1+iValue2; JOptionPane.showMessageDialog(null, result); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -