Guest User

Untitled

a guest
Dec 10th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. package WhileExempel;
  2.  
  3. import javax.swing.JOptionPane;
  4.  
  5. public class WhileExempel {
  6.  
  7. public static void main(String[] args) throws InterruptedException {
  8.  
  9. int i = 1;
  10.  
  11. do
  12. {
  13. System.out.println("Se en minut gå : " + i);
  14. Thread.sleep(1000);
  15. i++;
  16.  
  17. }
  18. while (i<61);
  19.  
  20. JOptionPane.showMessageDialog (null, "Grattis du har precis stirrat på nummer i en minut!");
  21.  
  22. }
  23.  
  24. }
Add Comment
Please, Sign In to add comment