6 lines
55 B
Matlab
6 lines
55 B
Matlab
n = 7;
|
|
if n > 5
|
|
disp("big")
|
|
else
|
|
disp("small")
|
|
end
|