Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. int dialogButton = JOptionPane.YES_OPTION;
  2. int dialogResult = JOptionPane.showConfirmDialog (null, "Did he/she work overtime",dialogButton);
  3. if(dialogResult == JOptionPane.YES_OPTION)
  4. {
  5. int oTime = Integer.parseInt(JOptionPane.showInputDialog("How many hours did he/she work overtime?"));
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement