/*copyright (c) 2013,烟台大学计算机学院
*All rights reserved.
*作者:赵振凯
*完成日期:2013年11月18日
*版本号:v1.0
*问题描述:猜数游戏
*/
#include <iostream>
#include<ctime>
#include<cstdlib>
using namespace std;
int main(void)
{
int n,num,count=1;
srand(time(0)); //time(0)返回值作种子
num=rand()%1000;
do
{
cout<<"猜一个数:";
cin>>n;
if(n==num)
break;
else if(n>num)
cout<<"大了!"<<endl;
else
cout<<"小了!"<<endl;
count++;
}while(true);
cout<<"历经"<<count<<"次,猜对了。"<<endl;
return 0;
}
运行结果 :