multiple loopings in a program
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
badrul hisham
am 9 Apr. 2016
Kommentiert: badrul hisham
am 9 Apr. 2016
Hi, i have a coding that requires user to input 2 numbers that are within a specific range.for example, for the first number:(please choose a number ranging from 1 to 7). If the user chose a number that is out of range, it will prompt for another number until the number chosen is within range.Then the program will proceed and ask for the second number:(please choose a number ranging from 15 to 20). Same as before, the number must be within range, otherwise it will just keep asking for a number. Can you please show me how to this?
Thank you
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 9 Apr. 2016
Bearbeitet: Walter Roberson
am 9 Apr. 2016
while true
num = input('get on with the first number');
if numels(num) ~= 1 || num < 1 || num > 7
fprintf('Oh, you.. .you!\n');
else
break;
end
end
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!