Advertisement
calcpage

HelloWorld3.java

Sep 14th, 2011
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. //HelloWorld3.java  MrG 20110912
  2. //purpose: helloworld with GUI input dialog box
  3. //required file: HelloWorld3.java
  4. //translator phase: javac HelloWorld3.java
  5. //interpreter phase: java HelloWorld3
  6. import javax.swing.JOptionPane;
  7. public class HelloWorld3
  8. {
  9.     public static void main(String[] args)
  10.     {
  11.         String myName = JOptionPane.showInputDialog("name? ");
  12.         System.out.println("hello, " + myName + ", how about a nice game of chess?");
  13.         System.exit(0);
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement