#include
#include
//linux版 #include
using namespace std;
int main()
{
srand(time(NULL));
int a=rand()%10000-1;
int b;
srand(time(NULL));
long long c=rand()%100000000000000000-1;
srand(time(0));
cout< while(cin>>b)
{
if(a==b)
{
cout<<"牛逼!";
//WINDOWS 版
break;
}
else if(a>b)
{
cout<<"小了!n";
}
else if(a {
cout<<"大了!n";
}
}
Sleep(10000);
return 0;
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)