matlab中input用法
2017-01-17 by:CAE仿真在线 来源:互联网
reply = 'Y';
while reply == 'Y'
score=input('Please input your score: ');
if isempty(score)
score = 60;
end
if (score < 60) && (score >= 0)
disp('E');
elseif (score >= 60) && (score < 70)
disp('D');
elseif (score >= 70) && (score < 80)
disp('C');
elseif (score >= 80) && (score < 90)
disp('B');
elseif (score >= 90) && (score < 100)
disp('A');
elseif score == 100
disp('Prefect!');
else
disp('Error input');
end
reply = input('Do you want more? Y/N [Y]: ', 's');
if isempty(reply) || reply == 'y'
reply = 'Y';
end
end
相关标签搜索:matlab中input用法 MatLab培训 MatLab培训课程 MatLab在线视频教程 MatLab技术学习教程 MatLab软件教程 MatLab资料下载 MatLab代做 MatLab基础知识 Fluent、CFX流体分析 HFSS电磁分析 Ansys培训 Abaqus培训