My issue
please explain test cases in proper way
My code
// Update the '_' in the code below
import java.util.Scanner;
class Codechef
{
public static void main (String[] args)
{
Scanner read = new Scanner(System.in);
// accept the count of test cases given in the 1st line
int t = read.nextInt();
// Run a loop to accept 't' inputs
for(int i=0; i<t; i++)
{
// accept an integer N in each test case
int n = read.nextInt();
// output the number mirror for each test case
// "println" prints output followed with a new line.
System.out.println(n);
}
}
}
Learning course: Logic Building in Java
Problem Link: CodeChef: Practical coding for everyone