#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 人评分
C二级辅导-公约公倍 (C语言代码)浏览:1549 |
C语言训练-排序问题<2> (C++代码)浏览:934 |
C语言训练-最大数问题 (C语言代码)浏览:648 |
C语言程序设计教程(第三版)课后习题1.5 (C++代码)浏览:778 |
母牛的故事 (C语言代码)浏览:594 |
愚蠢的摄影师 (C++代码)浏览:980 |
Tom数 (C语言代码)浏览:581 |
找出最长的字符串来 (C语言代码)浏览:1840 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:381 |
C语言训练-斐波纳契数列 (C语言代码)浏览:540 |