Effacer les filtres
Effacer les filtres

Dice game random number change

1 vue (au cours des 30 derniers jours)
Raz134
Raz134 le 5 Déc 2020
Modifié(e) : Rik le 8 Déc 2020
Hello, i created a game where u can guess the number of a random dice throw. I just have the problem that i cannot be able to change the random number. I tried to change the random number in the last elseif but it doesnt seem to change the value of the first random value created.
Optimal would be if the random dice throw number would change after every guess.
Where is my problem?
My code
clc
play = input('Do guess the number of a thrown dice? und 6 raten? press 1 for yes and 0 for no:');
if play ~= 1
helpdlg('Ok bye')
return;
end
highestNumb = 6;
compNumb = randi([1 highestNumb],1,1);
rightguess = 0;
wrongguess = 0;
usersGuess = input('What number do you pick? ');
trys = 6;
while play == 1 && usersGuess ~= 0 && trys > 0
if usersGuess < compNumb
usersGuess = input('You guessed too low. Enter your next guess, or 0 to quit : ');
wrongguess = wrongguess + 1;
trys = trys -1;
elseif usersGuess > compNumb
usersGuess = input('You guessed too high. Enter your next guess, or 0 to quit : ');
wrongguess = wrongguess + 1;
trys = trys -1;
elseif usersGuess == compNumb
compnumb = randi([1 highestNumb],1,1);
usersGuess = input('You guess right! What is your next pick? : ');
rightguess = randi([1 highestNumb],1,1);
trys = trys - 1;
end
end
if wrongguess == 6
disp('Wow Sie haben nie richtig geraten, mein Beileid')
elseif rightguess >= 2
disp ('Gratulation sie haben mehr als 2 mal richtig geraten')
end

Réponse acceptée

Walter Roberson
Walter Roberson le 5 Déc 2020
elseif usersGuess == compNumb
compnumb = randi([1 highestNumb],1,1);
You are comparing to compNumb with a capital N, but you assign the new number to compnumb with a lower-case n.
  1 commentaire
Raz134
Raz134 le 5 Déc 2020
thank you, i missed that

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Strategy & Logic dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by