BenitoDannes

PBO-5-2-Dialog1

Mar 26th, 2017
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.44 KB | None | 0 0
  1. /**
  2.  * Fig. 3.17: Dialog1.java
  3.  * Menggunakan JOptionPane untuk menampilkan beberapa baris di dialog box.
  4.  *
  5.  * Benito Dannes
  6.  * 25-03-2017
  7.  */
  8.  
  9. import javax.swing.JOptionPane; // Import class JOptionPane
  10.  
  11. public class Dialog1
  12. {
  13.     public static void main (String[] args)
  14.     {
  15.         // Menampilkan dialog box dengan pesan
  16.         JOptionPane.showMessageDialog (null, "Welcome\n to\n Java");
  17.     } // End main
  18. } // End class Dialog1
Advertisement
Add Comment
Please, Sign In to add comment