Created
July 27, 2017 12:53
-
-
Save ShikherVerma/41b2f65c7f655bb7f8f08d0a32252df9 to your computer and use it in GitHub Desktop.
Example Java program. Compile and run : javac Solution.java ; java Solution [args]
This file contains 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.io.*; | |
import java.util.*; | |
import java.math.*; | |
public class Solution { | |
private static final String TAG = Solution.class.getName(); | |
public static void main(String... args) { | |
for(String s : args) | |
System.out.println(s); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment