programming 发表于 2020-9-25 18:21:33

C++猜数字

今天跟大家分享一个C++猜数字的小游戏代码。代码如下:
#include <iostream>
using namespace std;
#include <ctime>

int main() {


        cout << "请输入一个数字" << endl;

        srand((unsigned int)time(NULL));

       int num = rand() % 100 + 1;
       //cout << num << endl;

       int val = 0;

       while (1)
       {
               cin >> val;

               if (val > num)
               {
                       cout << "猜测过大" << endl;
               }
               else if (val < num)
               {
                       cout << "猜测过小" << endl;
               }
               else
               {
                       cout << "恭喜您猜对了" << endl;
                       break;
               }
       }
        system("pause");

        return 0;
}


chyx 发表于 2020-9-27 21:14:19

从坚持到放弃,就是最高境界。

smallhorse 发表于 2020-9-26 17:15:47

加油!我早已放弃!{:cry:}

chinasmu 发表于 2020-9-25 22:33:25

鼓励鼓励鼓励鼓励鼓励鼓励{:hug:}{:hug:}

programming 发表于 2020-9-26 18:39:07

smallhorse 发表于 2020-9-26 17:15
加油!我早已放弃!

为啥要放弃列!

programming 发表于 2020-9-28 17:15:22

chyx 发表于 2020-9-27 21:14
从坚持到放弃,就是最高境界。

从坚持到成功{:huffy:}
页: [1]
查看完整版本: C++猜数字