I have been in one competition before, and I have looked into another. But when in it, I realized I had no idea what to do about taking user input from a machine. When a normal human uses it, I know I can just quit by assigning keywords for that, but how would I handle that in a competition when it is piped into a machine which generates its own code to test mine? How do I write my code to break out of a while loop when I have no idea what the last input will be?
When looking at this in java:
while(sc.hasNext()){ /*code here. Breaks out when machine input is done*/}
I looked into it, and I came across this: "Read inputs from STDIN and output to STDOUT." When I clicked on the link for java, it gave me the wikipedia for the buffered reader or scanner, but gave no additional info but the example code I just gave.
Sample input:
2
2 5
3 4 8
Lets assume the first line is how many more lines to read. How do we know when to stop reading in each individual line, or do we just read the whole line?