Borrar filtros
Borrar filtros

counting number of inputs

1 visualización (últimos 30 días)
stephen aboasu
stephen aboasu el 19 de Sept. de 2015
Editada: James Tursa el 19 de Sept. de 2015
I'm designing a game that users have to guess the number. How do I keep track the number of times the user tried.

Respuestas (1)

James Tursa
James Tursa el 19 de Sept. de 2015
Editada: James Tursa el 19 de Sept. de 2015
Use a variable as a counter. E.g., suppose the variable name was guesses. Start with guesses=0 and then do guesses=guesses+1 for each guess. I.e.,
guesses = 0;
value = whatever;
while( true )
% insert code for user to make a guess
guess = guess + 1;
% insert check to see if guess is equal to value. If so, break out of the loop
end

Categorías

Más información sobre Strategy & Logic en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by