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" ;  //... ...
    }                //... ... ...
    }
    
    • 1
      @ 2024-7-7 19:15:02
      # 便民小题解
      
      
      #include <iostream>
      
      using namespace std;
      int main() {
          int n;
          cin>>n;
          if(n>0){
              cout<<"positive";
          }
          if(n=0){
              cout<<"zero";
          }
          if(n<0){
              cout<<"negative";
          }
      	return 0;
      }
      
      • 1

      信息

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