Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. /**
  2. 2 * Created by: Chris
  3. 3 * Created on: 26/9/19
  4. 4 * Program to count down from three to one amendment
  5. 5 */
  6.  
  7. import javax.swing.JOptionPane;
  8.  
  9. public class Countdown2 {
  10.  
  11. public static void main (String [] args) {
  12.  
  13. JOptionPane.showMessageDialog (
  14. null ,
  15. "Three...,Two...,One...,Zero...,Liftoff!,Houston We have a problem",
  16. "Countdown",
  17.  
  18.  
  19. JOptionPane.INFORMATION_MESSAGE);
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26. }//main
  27. }//class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement