[编程员半年工作总结]相信很多人与我一样也换过公司,为了各种说不清道不明的原因。每次进了一家新的企业,都会根据以前的经验,在对人对事上会做一些改进。然而环境处处相似,人心总有雷同,无聊的事依旧...+阅读
clc
clear
a=rand(1,100);
[b,c]=sort(a);
index=c(1);
i=1;
while i<=5
if i==6
disp('You Lost!');
i=i+1;
else
d=input('please input the number you guess:');
if d>index
disp('High');
elseif d<index
disp('Low');
else
disp('You won!');
i=7;
end
i=i+1
end
end
disp(['The right number is ',num2str(index)]);
延伸阅读:
matlab中的时间和日期的函数有那些Matlab中计算函数运行时间的三种方法: 1、tic和toc组合 计算tic和toc之间那段程序之间的运行时间,它的经典格式为 : tic 函数 toc 复制函数代码,当代码遇到tic时Matlab自动开始...
ASP编程实训总结一篇时间过的真快,转眼间我期望已久的实训周已经结束。经过一周的实训练习让我学到了许多知识,回头想想实训这几天我确实是有很大收获的。 这次实训让我明白了我们实训的主要目的...