猜数字游戏程序源代码

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
cout <<"your time is:"<< duration <<"s"<< endl;
if(duration < 30 )
{
cout <<" you are the best!!!"<< endl;
}
else if(duration >=30 && duration < 60)
{
cout <<"you are brtter!!"<< endl;
}
else
{
cout <<"you are good!"<< endl;
}
return 0;
}
}
else if(a > ran_num)
{
cout <<"your number is big."<< endl;
}
else
{
break;
}
}/*比较输入数字同随机数字的大小*/
finish = clock();
duration = (double)(finish - start) / CLOCKS_PER_SEC;
ran_num = 10000*rand() / (RAND_MAX)+0;/*随机数字出现范围0~1000;
要取得[a,b)之间的随机整数,使用(rand() % (b-a))+ a
或者(rand() * (b-a)) / RAND_MAX + a。*/
// cout <<"随机数字:"<< ran_num << endl;/*此行可删去为方便知道随机数字*/
内容和要求
编写一个猜数字游戏,要求:
计算机产生随机数,猜中即胜,猜不中,提示是大了还是小了,继续猜,直至猜到,给出所用时间和评语
#include<iostream>
#include<time.h>
using namespace std;
int main()
{
int a;
int ran_num;
srand((unsigned)time(NULL)*100);
cout <<"input your number:"<< endl;
clock_t start, finish;
double duration; /*测量猜数字的时间*/
start = clock();
while(cin >>ห้องสมุดไป่ตู้a)
{
if(a < ran_num)
{
cout <<" your number is small."<< endl;
相关文档
最新文档