猜数游戏
作者:互联网
#include
#include#include#include<windows.h>using namespace std;int main(){ srand(time(0)); int n=rand()%1000; int c=-1,ans=0; cout<<“你要猜的数字为:***”<<endl<<endl; while(c!=n){ cout<<“你猜的数是:”; cin>>c; ans++; if(c>n){ Sleep(500); cout<<“大了!”<<endl<<endl; } else if(c<n){ Sleep(500); cout<<“小了!”<<endl<<endl; } } cout<<“恭喜猜中!!!”<<endl<<“共用了”<<ans<<“次!!!”<<endl; system(“pause”); return 0;}
标签:std,rand,游戏,猜数,int,ans,include,cout 来源: https://blog.csdn.net/m0_64985602/article/details/122288494