这是一个简单的猜数游戏
#include<bits/stdc++.h>
#define random(x) rand()%(x)
#define Sleep(x) for(long long i=1;i<=x*1e5;i++){}
using namespace std;
int num,counter,fw;
void time_(int x)
{
for(int i=1;i<=x;i++)
{
Sleep(10);
cout<<".";
}
cout<<endl;
}
void work_()
{
cout<<"请输入你猜的数:"<<endl;
int x;
cin>>x;
if(x>num)
{
counter++;
cout<<"太大了!"<<endl;
cout<<"您已猜了"<<counter<<"次"<<endl;
work_();
}
else if(x<num)
{
counter++;
cout<<"太小了!"<<endl;
cout<<"您已猜了"<<counter<<"次"<<endl;
work_();
}
else
{
counter++;
cout<<"恭喜您,猜中了!!"<<endl;
cout<<"您共猜了"<<counter<<"次"<<endl;
}
}
void start()
{
cout<<" 系统准备中.";
time_(8);
cout<<" 策划中.";
time_(12);
cout<<" 随机数生成中.";
time_(6);
num=random(fw);
work_();
}
int main()
{
ios::sync_with_stdio(false);
system("color 5F");
cout<<"这是一个猜数游戏,请输入数的范围(例如:输入n,则范围为1~n)"<<endl;
cin>>fw;
cout<<endl<<endl;
start();
return 0;
}
user_qym
发布了39 篇原创文章 · 获赞 31 · 访问量 7014
私信
关注