📄 ex2_10.java
字号:
import javax.swing.JOptionPane;/* * To change this template, choose Tools | Templates * and open the template in the editor. *//** * * @author xiaolei */public class EX2_10 { public static void main(String[] args) { int num; num = Integer.parseInt(JOptionPane.showInputDialog("输入整数:")); System.out.println("Is " + num + " an even number? " + (num % 2 == 0)); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -