0

Eclipse is not executing all answer(numbers from 901000000 to 999999999) i can get only like 2000 or 3000 numbers

long a;
for (a=901000000; a<=999999999; a++) 
    System.out.println(a);
nguyentt
  • 649
  • 6
  • 13
  • Console usually isn't configured to hold all lines, but only most recent N lines which is why you may not see previous ones. – Pshemo Sep 21 '18 at 15:33
  • I would look at this: https://stackoverflow.com/questions/2828255/how-do-i-increase-the-capacity-of-the-eclipse-output-console – GBlodgett Sep 21 '18 at 15:52
  • It may be worth clarifying how you are determining "not executing" - is this just based on what you see in the output after execution or are you looking at the execution in debug mode or watching the console as it generates things? It'd help to clarify this in your question! – Chris Sep 21 '18 at 16:41

1 Answers1

0

You need to uncheck the console output limit

You need to unchecked the cosole output limit

P.J.Meisch
  • 18,013
  • 6
  • 50
  • 66
Ivan Fontalvo
  • 433
  • 4
  • 21