69 条题解

  • -1
    @ 2023-7-31 21:06:51

    答案在这了: #include <iostream> using namespace std; int main() { int a,b,c; cin >> a >> b >> c; if (a + b > c) { cout << "yes";//如果a+b大于c,输出"yes" } else { cout << "no";//否则输出"no" } return 0; } 非常简单,入门题😄

    
    
    • -1
      @ 2023-7-30 18:08:44

      最最最容易理解的题解来了

      #include <iostream>
      using namespace std;
      int main()
      {
      int a,b,c;//定义变量
      cin >> a >> b >> c;//输入变量
      int d = a + b;   //多定义一个变量d用于存储a+b的和.
      if (d > c)  //判断a+b的和是否大于c
      {
      cout << "yes";
      }
      else//不大于,就输出no
      {
      cout << "no";
      }
      return 0;
      }
      
      • -1
        @ 2023-7-16 20:40:56
        #include <iostream>
        using namespace std;
        int main()
        {
            int a,b,c;
            cin>>a>>b>>c;
            if((a+b)>c)
            {
                cout<<"yes";
            }
            else
            {
                cout<<"no";
            }
            return 0;
        }
        
        • -1
          @ 2023-7-15 13:01:21
          using namespace std;
          int main()
          {
              int a,b,c;
              cin>>a>>b>>c;
              if((a+b)>c)
              {
                  cout<<"yes";
              }
              else
              {
                  cout<<"no";
              }
              return 0;
          }
          小题解
          
          • -1
            @ 2023-7-13 20:09:20

            #include <bits/stdc++.h> using namespace std; int main() { int a, b, c; cin>> a >> b >> c; if ((a+b)>c) { cout << "yes"; } else { cout << "no"; } return 0; }

            • -1
              @ 2023-7-10 20:13:21
              #include <iostream>
              using namespace std;
              int main()
              {
                  int a,b,c;
                  cin >> a >> b >> c;
                  if(a+b>c)
                  {
                      cout<<"yes";
                  }
                  else
                  {
                      cout<<"no";
                  }
              	return 0;
              }
              
              
              • -1
                @ 2023-6-4 20:43:11

                这道题也是SO EASY!用了最简单的if分支判断来解决,下面“Daima time"(中二病发癫晚期,不必理睬,dog)

                #include<bits/stdc++.h>
                using namespace std;
                int main(){
                	int a,b,c;//输入a,b,c三个整数
                	cin>>a>>b>>c;//定义这三个数
                	if(a+b>c){
                		cout<<"yes";//判断是否符合条件,符合输出yes
                	}else{
                		cout<<"no";
                	}//如果不符合输出no
                	return 0;
                }
                

                现在便到了喜闻乐见的习惯养成环节。 一定不要加上return 0! (静说瞎话ing)点个赞吧❤️

                • -1
                  @ 2022-8-4 21:27:06

                  #include <bits/stdc++.h> using namespace std; int a,b,c;//定义变量 int main() { cin >> a >> b >> c;//输入变量 if(a + b > c)//判断前两个数a、b的和大于第三个数c { cout << "yes";//是 } else//否则 { cout << "no";//不是 } return 0; }

                  • -4
                    @ 2022-5-23 15:27:38

                    题解:题目用if-else判断即可完成。不过需要注意输出的英文大小写。

                    信息

                    ID
                    30
                    时间
                    1000ms
                    内存
                    16MiB
                    难度
                    5
                    标签
                    递交数
                    15551
                    已通过
                    6517
                    上传者