2021-10-19

《猜数字游戏》 初步学习while循环
#include
using namespace std;

int main() {
//添加随机数种子 利用当前系统时间生成随机数 防止每次随机数都一样
srand((unsigned int)time(NULL));
int num = rand() % 100+1;
int ans = 0;
while (1) { //死循环 不论大小都继续
cin >> ans;
if (ans > num) {
cout << "猜测过大" << endl; } else if (ans < num) { cout << "猜测过小" << endl; } else { cout << "猜对了" << endl; break;//符合条件 跳出循环 } } system("pau

2021-10-19最先出现在Python成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/3992.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>