Skip to content

Instantly share code, notes, and snippets.

@ShikherVerma
Created July 27, 2017 12:53
Show Gist options
  • Save ShikherVerma/41b2f65c7f655bb7f8f08d0a32252df9 to your computer and use it in GitHub Desktop.
Save ShikherVerma/41b2f65c7f655bb7f8f08d0a32252df9 to your computer and use it in GitHub Desktop.
Example Java program. Compile and run : javac Solution.java ; java Solution [args]
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