Friday, March 20, 2009

HELLO

EXERCISE 5


**
/* Programmer: Nerissa Agapay
* Program name: Greeting
* Instructor: Mr. Dony Dongiapon
* Date Started: 03/16/09
* Date Finished: 03/18/09
* Description:To print message what is being enter by the user
*/
import javax.swing.*;//java package

public class Greeting {
public static void main(String[]args){

String name=(JOptionPane.showInputDialog("Enter Greeting:"));//ask for greeting


JOptionPane.showMessageDialog(null,name,"Print Output",JOptionPane.INFORMATION_MESSAGE);//print the greeting in the dialog box


}
}

No comments:

Post a Comment