%How would i form an array if i had 5 inputs like this of random number % displayed at the end. clc,clear x = 12; num = 0; for index = 1:5 y = input('Guess the number? ','s'); z = y + num; if z >= 13 disp(' Too High! ') elseif z <= 11 disp(' Too Low!') else; z = x; disp(' Correct! ') break end end
Kshitij Singh answered .
2025-11-20
for index = 1:5
y = [0,0];
while numel(y)~=1 || mod(y,1)~=0 || y<0
y = input('Guess the number (scaler, positive integer)? ','s')
end
% [INSERT OTHER STUFF....]
end
nLoops = 5;
y = cell(1,nLoops);
for index = 1:nLoops
y{index} = [0,0];
while numel(y{index})~=1 || mod(y{index},1)~=0 || y{index}<0
y{index} = input('Guess the number (scaler, positive integer)? ','s');
end
% [INSERT OTHER STUFF....]
end