Hi everybody,
I am new to java I installed netbeans 6.0.1
I tried running the following simple program but it didnor work???
import java.util.*;
public class Hello
{
public static void main(String [] args)
{
Scanner reader = new Scanner(System. in);
String name;
System.out.prin t("What is your name? ");
name = reader.readLine ();
System.out.prin tln(name + " I look forward to a long and fruitful relationship.") ;
}
}
I got the following error:
init:
deps-jar:
Compiling 1 source file to C:\Documents and Settings\PAAET User\My Documents\NetBe ansProjects\Jav aApplication8\b uild\classes
C:\Documents and Settings\PAAET User\My Documents\NetBe ansProjects\Jav aApplication8\s rc\javaapplicat ion8\Main.java: 28: class, interface, or enum expected
--------------------------------------------------------------------------------
1 error
BUILD FAILED (total time: 0 seconds)
I am new to java I installed netbeans 6.0.1
I tried running the following simple program but it didnor work???
import java.util.*;
public class Hello
{
public static void main(String [] args)
{
Scanner reader = new Scanner(System. in);
String name;
System.out.prin t("What is your name? ");
name = reader.readLine ();
System.out.prin tln(name + " I look forward to a long and fruitful relationship.") ;
}
}
I got the following error:
init:
deps-jar:
Compiling 1 source file to C:\Documents and Settings\PAAET User\My Documents\NetBe ansProjects\Jav aApplication8\b uild\classes
C:\Documents and Settings\PAAET User\My Documents\NetBe ansProjects\Jav aApplication8\s rc\javaapplicat ion8\Main.java: 28: class, interface, or enum expected
--------------------------------------------------------------------------------
1 error
BUILD FAILED (total time: 0 seconds)
Comment