0
I am Java beginner, whats worng with this code?
public class Main { public static void Main(String[]args) { } } int x= 15; if (x>= 17 && x<=40){ System.out.println("Well done, u can work 4 us") }else{ System.out.println("Sorry brodi") }
2 ответов
+ 1
Two errors that I can see:
1. There are two spurious closing braces on lines 5 and 6 (being line 1 "public class Main"). They should be at the very end of your code.
2. Both PrintLns are missing the trailing semicolon.
+ 2
it should be public static void main (not Main :P)
Also you forgot semi colons at the end of print statements