Created
March 12, 2023 13:47
-
-
Save prankush-tech/8b8b9179912ab498f65e9c5a8cc0b7e9 to your computer and use it in GitHub Desktop.
java Template for cp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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