Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save prankush-tech/8b8b9179912ab498f65e9c5a8cc0b7e9 to your computer and use it in GitHub Desktop.
Save prankush-tech/8b8b9179912ab498f65e9c5a8cc0b7e9 to your computer and use it in GitHub Desktop.
java Template for cp
import java.util.*;
class sum {
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
int t = in.nextInt();
while(t-- >0)
{
System.out.println("Hello, World!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment