My issue
My code
class Codechef
{
public static void main (string [] args)
}
{
System.out.print(12 + 7) ;
}
}
Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone
class Codechef
{
public static void main (string [] args)
}
{
System.out.print(12 + 7) ;
}
}
Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone
You have an extra closing curly bracket }
on line 4. Remove that and your program will work fine.
Remove } from the 4th line, and you’ll be fine.