2 条题解

  • 1
    @ 2025-1-14 9:22:06

    修正一下

    #include <bits/stdc++.h>
    using namespace std;
    int main ( )
    {
    int n ;
    cin >> n ;
    if ( n > 0 )
    {
    cout << "positive" ;
    }
    if ( n < 0 )
    {
    cout << "negative" ;
    }
    if ( n == 0 )       //else cout << "zero" ;
    {                  //...
    cout << "zero" ;  //... ...
    }                //... ... ...
    }
    

    信息

    ID
    467
    时间
    1000ms
    内存
    128MiB
    难度
    7
    标签
    递交数
    328
    已通过
    88
    上传者