(+84) 236.3827111 ex. 402

JOptionPane


public class Chuong3LapTrinhDoHoa {
public static void main(String[] args) {
int i;
do {
try {
String str = JOptionPane.showInputDialog("Nhập số nguyên");
int n = Integer.parseInt(str);//ép kiểu
String mess = (n % 2 == 0) ? "Số chẵn" : "Số lẻ";
JOptionPane.showMessageDialog(null, mess);
} catch (Exception e) {
JOptionPane.showMessageDialog(null, "Nhập sai dữ liệu!");
}
i = JOptionPane.showConfirmDialog(null,
"Bạn muốn tiếp tục ko?",
"Xác nhận", JOptionPane.YES_NO_OPTION);
} while (i==0);
}
}