0
can someone correct me? .. there's error which says '{' expected ... iam kinda bewildered and yeah here's my work ...
class firstproject; { public class firstproject { public static void main(String[]args) {System.out.println ("My First Project");}} }
3 ответов
0
you cannot declare the class as a definition. you must even develop the definitiob of the class. Delete entirely the dirst declaration of the class
0
Delete you first line of code!!
0
public class firstproject {
public static void main(String[]args) {
System.out.println ("My First Project");
}
}
I think this is what you need.