打卡7

#include<iostream>
using namespace std;
#include<ctime>
int main()
{
srand((signed int)time(NULL));
int a=rand()%100+1;
while(1)
{
int b=0;
cin>>b;
if(b>a)
{
cout<<"您猜测过大"<<endl;
}
else if(b<a)
{
cout<<"您猜测过小"<<endl;
}
else
{
cout<<"您猜测正确"<<endl;
break;
}
}

posted @ 2023-05-04 20:50  大虚胖子  阅读(10)  评论(0编辑  收藏  举报