#include
#include
#include
int m; //用以在运行时设置猜数的范围
using namespace std;
int main()
{
void guess(); //函数声明,用户进行猜数
int randnum(); //函数声明,设置猜数范围并产生设定范围内的随机数
guess();
return 0;
}
int randnum()
{
int number;
cout<>m;
time_t t;
srand(time(&t));
number=rand()%m;
return number;
}
void guess()
{
int n;
int number;
char ans;
do
{
system("cls");
cout<n;
if(n>number)
cout<<"没有这么大,再猜:";
else if(nans;
} while(ans!='n');
}
1