Skip to content

Instantly share code, notes, and snippets.

@Onjanirina
Created April 29, 2012 13:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Onjanirina/2550557 to your computer and use it in GitHub Desktop.
Save Onjanirina/2550557 to your computer and use it in GitHub Desktop.
InterviewStreet.com Sample Java Solution Class
/** Solution.java (RAKOTONIAINA Onjanirina)
* Template for InterviewStreet Solution Class, reading from STDIN and writing to STDOUT, STDERR.
*************************************************************************************************/
import java.io.*;
/**
* @class Solution
* */
public class Solution {
/**
* @param args
*/
public static void main( String[] args) {
try {
BufferedReader reader =new BufferedReader( new InputStreamReader( System.in));
System.out.println("Hello world!");
} catch ( Exception e) {
System.err.println( e.getMessage()); }}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment