Skip to content
Snippets Groups Projects
Commit 5aca77f7 authored by vand's avatar vand
Browse files

Upload New File

parent 43baae47
No related branches found
No related tags found
No related merge requests found
disp('Welcome to multiplication game!')
disp('(Empty to quit)')
s = 'start';
while numel(s)>0
a = randi([0, 9]);
b = randi([0, 9]);
s = input([num2str(a),'*',num2str(b),'='],'s');
p = str2num(s);
if isempty(p) && ~isempty(s)
disp("I don't understand that.")
elseif p == a*b
disp('Good job!')
else
disp('Oh, no, try again.')
end
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment