My issue
what is data type
My code
// Update the '_' in the code below
import java.util.Scanner;
class Codechef
{
public static void main (String[] args)
{
Scanner ___ = 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.___();
// output the number mirror for each test case
// "println" prints output followed with a new line.
System.out.println(_);
}
}
}
Learning course: Java for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone