56 条题解

  • 2
    @ 2025-2-21 12:00:22

    孩子你被骗了

    • 0
      @ 2025-2-21 14:16:48

      孩子们,全都给我点赞好吧,不然直接肘死

      • 0
        @ 2025-2-21 13:36:09

      • 0
        @ 2024-12-19 17:29:13

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

        • 0
          @ 2024-12-19 17:09:57

          #include using namespace std; int main(){ double n; cin>>n; if(n<0) cout<<"negative"; if(n==0) cout<<"zero"; if(n>0) cout<<"positive"; return 0; }

          • 0
            @ 2024-2-23 10:47:29
            #include<bits/stdc++.h>
            using namespace std;
            int main(){
                int n;
                cin>>n;
                if(n==0){
                cout<<"zero";
            }
                if(n>0){
                cout<<"positive";
            }
                if(n<0){
                cout<<"negative";
            }
            return 0;
            }
            
            • -1
              @ 2025-2-21 14:11:49

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

              • -1
                @ 2025-2-21 11:31:29

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

                • -1
                  @ 2024-2-23 10:47:26
                  #include<bits/stdc++.h>
                  using namespace std;
                  int main(){
                      int n;
                      cin>>n;
                      if(n==0){
                      cout<<"zero";
                  }
                      if(n>0){
                      cout<<"positive";
                  }
                      if(n<0){
                      cout<<"negative";
                  }
                  return 0;
                  }
                  
                  • -1
                    @ 2024-2-23 10:47:08
                    #include<bits/stdc++.h>
                    using namespace std;
                    int main(){
                        int n;
                        cin>>n;
                        if(n==0){
                        cout<<"zero";
                    }
                        if(n>0){
                        cout<<"positive";
                    }
                        if(n<0){
                        cout<<"negative";
                    }
                    return 0;
                    }
                    
                    • -1
                      @ 2024-2-23 10:47:06
                      #include<bits/stdc++.h>
                      using namespace std;
                      int main(){
                          int n;
                          cin>>n;
                          if(n==0){
                          cout<<"zero";
                      }
                          if(n>0){
                          cout<<"positive";
                      }
                          if(n<0){
                          cout<<"negative";
                      }
                      return 0;
                      }
                      
                      • -1
                        @ 2024-2-23 9:34:27

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

                        • -1
                          @ 2024-2-23 9:26:13
                          #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
                            @ 2024-2-22 21:04:34

                            #include using namespace std; int main(){ int n; cin>>n; if(n==0){ cout<<"zero"; } if(n<0){ cout<<"negative"; } if(n>0){ cout<<"positive"; } return 0; }

                            • -1
                              @ 2024-2-22 11:24:52

                              #include 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
                                @ 2024-2-22 11:24:48

                                👍👍 👍👀️ 🚀️

                                #include<iostream>
                                using namespace std;
                                int main()
                                {   int a;
                                	cin>>a;
                                    if(a>0){
                                    cout<<"positive";}
                                    if(a==0){
                                    cout<<"zero";}
                                    if(a<0){
                                    cout<<"negative";}
                                    return 0;
                                 }
                                
                                • -2
                                  @ 2024-2-27 18:35:58
                                  #include<bits/stdc++.h>
                                  using namespace std;
                                  int main(){
                                      int n;
                                      cin>>n;
                                      if(n==0){
                                      cout<<"zero";
                                  }
                                      if(n>0){
                                      cout<<"positive";
                                  }
                                      if(n<0){
                                      cout<<"negative";
                                  }
                                  return 0;
                                  }
                                  
                                  • -2
                                    @ 2024-2-23 10:33:53

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

                                    • -2
                                      @ 2024-2-23 10:33:35

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

                                      • -2
                                        @ 2024-2-23 10:33:26

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

                                        信息

                                        ID
                                        85
                                        时间
                                        1000ms
                                        内存
                                        128MiB
                                        难度
                                        3
                                        标签
                                        (无)
                                        递交数
                                        966
                                        已通过
                                        531
                                        上传者