I want to count the number of attempts the user tried to guess the correct guess. How would i do that?
like
I have thought of a number.
Try to guess it Take a guess: 5
Your guess is higher than mine
Take a guess: 3
Your guess is lower than mine
Take a guess: 4
Good job! You guessed the number in 3 tries.
import java.util.*;
class task3344
{
public static void main (String [] args)
{
Scanner scan = new Scanner (System.in);
int random = 1 + (int)(Math.random() * 9);
System.out.println (random);
int guess = 0;
do
{
System.out.println ("Take guess: ");
guess = scan.nextInt();
if (guess > random)
{
System.out.println ("your guess is high");
}
else if (guess < random)
{
System.out.println ("your guess ins low");
}
else
{
System.out.println ("good! you guessed correct");
}
}
while (guess != random);
}
}