% % Input 3-Numbers and give the maximal one. % a=input('Give a '); % (0) % See the corresponding numbers (i) in the attached flowchart. b=input('Give b'); c=input('Give c'); % if a>b % (1) if b>c % (2) disp(b); % (4) else disp(c); % (5) end else if a>c % (3) disp(a); % (6) else disp(c); % (7) end end