Hey, I'm totally new to Java, and I'm taking a class. My current assignment involves inputting 2 names and corresponding bdays for each name using the JOptionPane.sho wInputDialog etc. Anyway, I'm confused by Sun's site and I keep getting error messages. Below is what I have and the error message when I try to compile. Any help would be much appreciated. Thanks!
package javaapplication 1;
/**
*
* @author Jillian
*/
public class asg1 {
//This is a programme designed to output older or younger.
public static void main(String[] args) {
System.out.prin tln("Author: Jillian);
int name1 = JOptionPane.sho wInputDialog("I nput the first name:");
}
}
symbol : variable JOptionPane
location: class javaapplication 1.asg10
int name1 = JOptionPane.sho wInputDialog("I nput the first name:");
1 error
BUILD FAILED (total time: 3 seconds)
package javaapplication 1;
/**
*
* @author Jillian
*/
public class asg1 {
//This is a programme designed to output older or younger.
public static void main(String[] args) {
System.out.prin tln("Author: Jillian);
int name1 = JOptionPane.sho wInputDialog("I nput the first name:");
}
}
symbol : variable JOptionPane
location: class javaapplication 1.asg10
int name1 = JOptionPane.sho wInputDialog("I nput the first name:");
1 error
BUILD FAILED (total time: 3 seconds)
Comment