Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone
Feedback
there are an error in the solution of site has an extra “}”
Learning course: Learn Java
Problem Link: CodeChef: Practical coding for everyone
there are an error in the solution of site has an extra “}”
@patrickones hey ! here is my code
import java.util.*;
class Codechef
{
public static void main (String[] args)
{
Scanner read = new Scanner(System.in);
int num = read.nextInt();
int a = 0;
// Update your code below this line
for(a=0 ; a<num ; a++){
System.out.println(a);
}
}
}