4 条题解

  • 0
    @ 2023-8-18 9:16:22
    #include <bits/stdc++.h>
    using namespace std;
    int n;
    int main()
    {
        scanf("%d", &n);
        printf((n ? (n > 0 ? "positive" : "negative") : "zero"));
        return 0;
    }
    

    【条件】【入门】判断数正负

    信息

    ID
    2
    时间
    1000ms
    内存
    128MiB
    难度
    2
    标签
    递交数
    73
    已通过
    26
    上传者