4 条题解

  • 1
    @ 2024-4-28 19:33:21
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
        int n;
        cin>>n;
        if (n>0)
        {
            cout<<"+";
        }
        else
        {
            cout<<"-";
        }
        return 0;
    }//AC
    
    • 0
      @ 2023-4-6 19:53:22
      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
          int x;
          cin>>x;
          if (x>0)
              cout<<"+";
          else
              cout<<"-";
          return 0;
      }
      • -2
        @ 2023-9-22 18:45:19
        #include<bits/stdc++.h>
        using namespace std;
        int main()
        {
            int n;
            cin >> n;
            if(n < 0)
            {
                cout << "-";
            }
            else
            {
                cout << "+";
            }
            return 0;
        }//A
        
        • -2
          @ 2022-7-19 10:03:15
          #include <iostream>
          using namespace std;
          int main()
          {
              int n;
              cin >> n;
              if(n - n - 1 == 1)
              {
                  cout << "+";
              }
              else
              {
                  cout << "-";
              }
              return 0;
          }
          
          
          • 1

          信息

          ID
          642
          时间
          1000ms
          内存
          16MiB
          难度
          1
          标签
          递交数
          101
          已通过
          89
          上传者