1 条题解

  • 0
    @ 2021-6-14 22:56:36

    C++ :

    #include<iostream>
    using namespace std;
    int a,b,c,d,e,f,g;
    int main()
    {
        a=1234567890;
        b=2147483646;
        c=b+1;
        d=c+1;
        e=-2147483647;
        f=e-1;
        g=f-1;
        cout<<"a="<<a<<endl;
        cout<<"b="<<b<<endl;
        cout<<"c="<<c<<endl;
        cout<<"d="<<d<<endl;
        cout<<"e="<<e<<endl;
        cout<<"f="<<f<<endl;
        cout<<"g="<<g<<endl;
        return 0;
    }
    
    
    • 1

    信息

    ID
    71
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者