Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 508 Bytes

File metadata and controls

35 lines (26 loc) · 508 Bytes

Back

P1.14

Type in and run the following program:

import javax.swing.JOptionPane;

public class DialogViewer
{
  public static void main(String[] args)
  { 
    JOptionPane.showMessageDialog(null, "Hello, World!"); 
  }
}

Then modify the program to show the message "Hello, your name!".


Solution:

import javax.swing.JOptionPane;

class P0114 
{
  public static void main(String[] args) 
  {
    JOptionPane.showMessageDialog(null, "Hello, Jay!");
  }
}