C++猜数字为什么猜什么都是对的

C++猜数字为什么猜什么都是对的,第1张

#include
using namespace std;
#include

int main()
{
    srand((unsigned int)time(NULL));
    int a = rand() % 100 + 1;
    int b;
    while(1)
    {
        cin >> b;
        cout <<"b ="<< b << endl;
        if(a=b)
        {
            cout <<"你猜对了"<             break;
        }
        else if(a         {
            cout<<"数字过大"<         }
        else
        {
            cout<<"数字过小"<         }
    }
    
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1295564.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-10
下一篇 2022-06-10

发表评论

登录后才能评论

评论列表(0条)

保存