Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Fig. 3.17: Dialog1.java
- * Menggunakan JOptionPane untuk menampilkan beberapa baris di dialog box.
- *
- * Benito Dannes
- * 25-03-2017
- */
- import javax.swing.JOptionPane; // Import class JOptionPane
- public class Dialog1
- {
- public static void main (String[] args)
- {
- // Menampilkan dialog box dengan pesan
- JOptionPane.showMessageDialog (null, "Welcome\n to\n Java");
- } // End main
- } // End class Dialog1
Advertisement
Add Comment
Please, Sign In to add comment