1 条题解

  • 3
    @ 2026-2-5 11:22:29

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

    • 1

    信息

    ID
    631
    时间
    1000ms
    内存
    128MiB
    难度
    7
    标签
    递交数
    13
    已通过
    10
    上传者