26 条题解

  • 0
    @ 2023-1-2 15:17:58
    #include<iostream>
    using namespace std;
    int main(){
        int n;
        cin >> n;
        if (n == 0){
    		cout<<"zero";
    	}else{
        	if (n < 0){
        	cout<<"negative";
    		}else{
        	cout<<"positive";
        	}
    	}
    }
    
    • 0
      @ 2022-9-3 14:45:55
      #include <bits/stdc++.h>
      
      using namespace std;
      
      int main()
      {
          int n;
      
          cin >> n;
      
          if (n == 0)
          {
              cout << "zero";
          }
          else if (n < 0)
          {
              cout << "negative";
          }
          else if (n > 0)
          {
              cout << "positive";
          }
      
          return 0;
      }
      
      • -1
        @ 2023-4-10 17:04:59
        #include <bits/stdc++.h>
        using namespace std;
        int main(){
            int n;
            cin >> n;
            if (n == 0){
                cout << "zero";
            }else if (n < 0){
                cout << "negative";
            }else{
                cout << "positive";
        	}
            return 0;
        }
        
        • -1
          @ 2022-12-4 15:55:06
          #include <bits/stdc++.h>
          
          using namespace std;
          
          int main()
          {
              int n;
          
              cin >> n;
          
              if (n == 0)
              {
                  cout << "zero";
              }
              else if (n < 0)
              {
                  cout << "negative";
              }
              else if (n > 0)
              {
                  cout << "positive";
              }
          
              return 0;
          }
          
          • -2
            @ 2022-1-2 15:54:56
            #include <stdio.h>
            #include <iostream>
            #include <math.h>
            #include <iomanip>
            using namespace std;
            int main()
            {
            	int N;
            	cin >>N;
            	if(N<0)
            	{
            		cout<<"negative";
            	}
            	else if(N==0)
            	{
            		cout<<"zero";
            	}
            	else
            	{
            		cout<<"positive";
            	}
            }
            
            • -3
              @ 2022-1-2 15:49:55
              #include <stdio.h>
              #include <iostream>
              #include <math.h>
              #include <iomanip>
              using namespace std;
              int main()
              {
              	int N;
              	cin >>N;
              	if(N<0)
              	{
              		cout<<"negative";
              	}
              	else if(N==0)
              	{
              		cout<<"zero";
              	}
              	else
              	{
              		cout<<"positive";
              	}
              }
              

              信息

              ID
              868
              时间
              1000ms
              内存
              128MiB
              难度
              4
              标签
              递交数
              672
              已通过
              302
              上传者