matlabHello World的条件输出实例
时间: 2024-05-10 07:21:31 浏览: 22
以下是一个条件输出实例:
```
x = input('Enter a number: ');
if x > 10
disp('The number is greater than 10');
elseif x == 10
disp('The number is equal to 10');
else
disp('The number is less than 10');
end
```
运行程序后,会提示用户输入一个数字。根据用户输入的数字大小,程序会输出不同的消息。如果输入的数字大于10,程序会输出“The number is greater than 10”,如果输入的数字等于10,程序会输出“The number is equal to 10”,否则程序会输出“The number is less than 10”。
阅读全文