Skip to content

Instantly share code, notes, and snippets.

View nazmul202101's full-sized avatar
😍
Mind is Opening for Bigger Dreams.

Sheikh Nazmul Islam nazmul202101

😍
Mind is Opening for Bigger Dreams.
View GitHub Profile
public static void main(String[] args) {
try {
Scanner sc = new Scanner(new File(args[0]));
int n = Integer.parseInt(sc.next());
for (int i = 0; i < n; i++) {
System.out.println(sc.next()); // TEST
}
} catch (FileNotFoundException e) {