Guest User

Untitled

a guest
Apr 3rd, 2017
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. import javax.swing.JOptionPane;
  2.  
  3. public class NameDialog
  4. {
  5. public static void main (String[] args)
  6. {
  7. String name= JOptionPane.showInputDialog ("Hello, what is your name?");
  8. String message= String.format ("Welcome to Java Programming, %s!", name);
  9.  
  10. JOptionPane.showMessageDialog (null, message);
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment