Quantcast
Channel: Programmers Heaven Forums RSS Feed
Viewing all articles
Browse latest Browse all 2703

Making a program to print "Hello [name]!"

$
0
0
I'm very very new to Java, currently taking a college course in it. I'm supposed to start with the following program, and change it so that when the user types in their name, the program will print "Hello, [name]!" I have absolutely no idea where to start, and would enormously appreciate any help you folks could give.
___
import javax.swing.J0ptionPane;

public class DialogViewer
{
public static void main(String[] args)
{
String name = J0ptionPane.showInputDialog("What is your name?");
System.out.println(name);
System.exit(0);
}
}

Viewing all articles
Browse latest Browse all 2703

Trending Articles