You are viewing a single comment's thread. Return to all comments →
thats a cool small "intro" question. easy, but a cool "entreé". has the exam-question feel to it.
import java.io.*; import java.util.*; public class Solution { public static void main(String[] args) throws IOException { BufferedReader input = new BufferedReader(new InputStreamReader(System.in)); String str = input.readLine(); System.out.println("Hello, World."); System.out.println(str); } }
Seems like cookies are disabled on this browser, please enable them to open this website
An unexpected error occurred. Please try reloading the page. If problem persists, please contact support@hackerrank.com
Day 0: Hello, World.
You are viewing a single comment's thread. Return to all comments →
thats a cool small "intro" question. easy, but a cool "entreé". has the exam-question feel to it.