How can I count the number of times a loop runs in Java?

  • Context: Java 
  • Thread starter Thread starter schapman22
  • Start date Start date
  • Tags Tags
    Count Java Loops
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 6K views
schapman22
Messages
74
Reaction score
0
For my class I need to make a "Guessing Game" Program. Basically you just pick a number between 1-1000. It tells you if you are too high, too low, or correct. If your too high or low you guess again until you get it right. When you get it right it is supposed to tell you how many tries it took you. I have it running properly but I don't know how to count how many times the loop ran, which is the number I would need for the response when you guess the correct number. Can anyone tell me how to count the number of times a loop runs?
 
Physics news on Phys.org
Use a counter variable. You just add 1 each time the thing you want to count happens (i.e. add 1 each time through the loop) and check its value at the end.