In C++ if I wish to read input till the EOF I can do it in the following manner
while(scanf(\"%d\",&n)) { A[i]=n; i++; }
I can
You can do this:
Scanner s = new Scanner(System.in); while (s.hasNextInt()) { A[i] = s.nextInt(); i++; }