My issue
run time error
My code
class Codechef
{
public static void ___ (String[] args)
{
System.out.print(12 + 7);
}
}
Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone
run time error
class Codechef
{
public static void ___ (String[] args)
{
System.out.print(12 + 7);
}
}
Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone
@eshwardurgam20
U have to write main after void .
like this
class Codechef
{
public static void main (String[] args)
{
System.out.print(12 + 7);
}
}