袁愈权


私信TA

用户名:dotcpp0787148

访问量:239

签 名:

原神玩家不会轻易认输!

等  级
排  名 651
经  验 4046
参赛次数 3
文章发表 41
年  龄 19
在职情况 学生
学  校 贺州学院
专  业 网络工程

  自我简介:

本人原神,崩铁玩家。

#include"iostream"
#include"random"
using namespace std;
int c(int min,int max){
    random_device rd;
    mt19937 gen(rd());
    uniform_int_distribution<> dis(min, max);
    return dis(gen);
}
int main (){
    int b,e=1;
    int a=c(0,100);
    cout<<"猜一个0到100的数,有8次机会"<<endl;
    cin>>b;
    while(b!=a) {
        if(e==8) {
            cout << "很遗憾,你猜了8次都没猜对,太菜了吧" << endl;
            e++;
            break;
        }
        else if (b > a) {
            cout << "猜大了哦" << endl;
            cin >> b;
            e++;
        } else if (b < a) {
            cout << "猜小了哦" << endl;
            cin >> b;
            e++;
        }
    }
    if(e<=8){
        cout<<"恭喜猜对了"<<endl;
        if(e<=5){
            cout<<"你居然只猜了"<<e<<"次就猜对了,有点东西"<<endl;
        }
        else if(e>5&&e<=8){
            cout<<"你猜了"<<e<<"次才猜对,牢弟还得练"<<endl;
        }
    }
    return 0;
}


 

0.0分

1 人评分

  评论区

捧个场
2024-11-03 21:14:59
  • «
  • 1
  • »