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
@sarabjit11122
U have to do it like this.
class Codechef
{
public static void main (String[] args)
{
System.out.print(12 + 7);
}
}