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

  • Thread starter Thread starter schapman22
  • Start date Start date
  • Tags Tags
    Count Java Loops
Click For Summary
To create a "Guessing Game" program that counts the number of attempts taken to guess a number between 1-1000, a counter variable is essential. This variable should be initialized to zero and incremented by one each time the guessing loop runs. At the end of the game, the final value of the counter will indicate how many guesses were made. This approach effectively tracks the number of iterations in the loop, providing the necessary feedback when the correct number is guessed.
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?
 
Technology 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.
 
Thank you.
 
Learn If you want to write code for Python Machine learning, AI Statistics/data analysis Scientific research Web application servers Some microcontrollers JavaScript/Node JS/TypeScript Web sites Web application servers C# Games (Unity) Consumer applications (Windows) Business applications C++ Games (Unreal Engine) Operating systems, device drivers Microcontrollers/embedded systems Consumer applications (Linux) Some more tips: Do not learn C++ (or any other dialect of C) as a...

Similar threads

  • · Replies 11 ·
Replies
11
Views
923
  • · Replies 15 ·
Replies
15
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 14 ·
Replies
14
Views
6K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 5 ·
Replies
5
Views
1K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 19 ·
Replies
19
Views
3K