48 条题解

  • 0
    @ 2024-2-23 10:33:35

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

    信息

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