Advertisement
calcpage

APCS2012 HelloWorld3.java

Sep 7th, 2012
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.27 KB | None | 0 0
  1. import javax.swing.JOptionPane;
  2.  
  3. public class HelloWorld3
  4. {
  5.     public static void main(String[] args)
  6.     {
  7.         String myName = JOptionPane.showInputDialog("name? ");
  8.         System.out.println("Hello, " + myName + ", how about a nice game of chess?");
  9.         System.exit(0);
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement