필터 지우기
필터 지우기

counting number of inputs

조회 수: 1 (최근 30일)
stephen aboasu
stephen aboasu 2015년 9월 19일
편집: James Tursa 2015년 9월 19일
I'm designing a game that users have to guess the number. How do I keep track the number of times the user tried.

답변 (1개)

James Tursa
James Tursa 2015년 9월 19일
편집: James Tursa 2015년 9월 19일
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

카테고리

Help CenterFile Exchange에서 Strategy & Logic에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by