69 条题解

  • -1
    @ 2023-12-11 21:12:51
    #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-11-26 19:49:34
      #include<iostream>
      using namespace std;
      int main(){
          int a,b,c;
          cin >>a>>b>>c;
          if(a+b>c){
              cout<<"yes";
          }
          else {
              cout<<"no";
          }
      }
      

      不是,我不明白为什么有些**特别喜欢小题大做,还有一些老师,都骑在头上拉屎了。

      • -1
        @ 2023-11-26 14:22:37
        if((a+b)>c)//判断a+b是否等于c
            {
                cout<<"yes";
            }
            else
            {
                cout<<"no";
            }
        }
        
        • -1
          @ 2023-11-20 19:53: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-11-12 10:05:28

            #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-11-12 10:05:15

              #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-11-12 10:04:55

                #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-11-12 10:02:45
                  #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-11-12 9:57:54
                    #include <iostream>
                    using namespace std;
                    int a , b , c ;
                    int main(){
                        cin >> a >> b >> c ;
                        ~~cout << (a+b>c?"yes":"no");~~
                       ~~ return 0 ~~;
                    }
                    
                    • -1
                      @ 2023-8-28 11:36:00

                      image

                      • -1
                        @ 2023-8-27 22:10:43
                        #include <bits/stdc++.h>//万能开头
                        using namespace std;
                        int a,b,c;//定义变量
                        int main()
                        {
                            cin>>a>>b>>c;//输入变量
                            if(a+b>c)//判断(大于c)
                            {
                                cout<<"yes";
                            }
                            else//否则
                            {
                                cout<<"no";
                            }
                            return 0;
                        }
                        
                        
                        //一手交赞,一手交货(代码)
                        
                        
                        
                        
                        
                        
                        
                        
                        
                        //核桃hetao1609095编程
                        //水印
                        
                        • -1
                          @ 2023-8-26 19:06:57
                          #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-8-25 22:27:30

                            太简单了,我就只放代码了

                            核心代码:

                            if ((a + b) > c)//判断条件是否满足
                            {
                            	cout << "yes";//满足
                            }
                            else//否则则执行下面的代码块
                            {
                            	cout << "no";//不满足
                            }
                            
                            • -1
                              @ 2023-8-19 16:04:56
                              #include <iostream>
                              using namespace std;
                              int main()
                              {
                                  int a,b,c;
                                  cin>>a>>b>>c; #先定义a,b,c
                                  if (a+b>c) #判断a+b是否大于c
                                  {
                                      cout<<"yes"; #是,输出yes
                                  }
                                  else
                                  {
                                      cout<<"no"; #不是,输出no
                                  }
                                  return 0;
                              }
                              
                              • -1
                                @ 2023-8-15 22:03:48

                                不会吧,这么简单 应该都会吧......

                                #include <bits/stdc++.h>
                                using namespace std;
                                int main()
                                {
                                    int a,b,c;
                                    cin>>a>>b>>c;
                                    if(a+b>c)
                                    {
                                        //如果前两个数a、b的和大于第三个数c,那么就输出“yes”
                                        cout<<"yes";
                                    }
                                    else
                                    {
                                        //否则就输出“no”
                                        cout<<"no";
                                    }
                                    return 0;
                                }
                                

                                制作不易,给个赞吧,球球了...... 有什么问题,联系我,邮箱是ASheepBoy_Bed@163.com

                              • -1
                                @ 2023-8-13 20:47:56

                                我们先定义 a b c 3个变量,并让用户输入

                                int a, b, c;
                                cin >>  a >> b >> c;
                                

                                题目说要判断a + b的和是否大于c,我们把这个条件放入if语句里:

                                if (a + b > c)
                                {
                                    cout << "yes";
                                }
                                else
                                {
                                    cout << "no";
                                }
                                
                                • -1
                                  @ 2023-8-7 9:57:42

                                  清华编程题👀️ 👀️

                                  #include <cstdio>
                                  //不需要using namespace std
                                  inline int reader(){
                                      //自定义输入函数
                                  	int it = 0 , chr = getchar();
                                      //getchar()获取一个字符,以这个为原理自己写个输入
                                  	while('0' > chr || chr > '9')
                                  		chr = getchar();
                                  	while('0' <= chr && chr <= '9')
                                  		it = (it << 1) + (it << 3) + chr - '0' ,chr = getchar() ;
                                  	return it ;
                                  }
                                  int main(){
                                  	printf("%s",(reader() + reader() > reader() ?"yes":"no"));
                                  	//快 整 整 1 m s
                                      //直接用返回值操作就不用定义变量
                                      //printf() 和 cout 差不多 , 用哪个随便
                                  	return 0 ;
                                  }
                                  
                                • -1
                                  @ 2023-8-6 14:24:11
                                  #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;
                                      }
                                  }😄 😄 
                                  
                                  ---
                                  (xingshou)
                                  
                                  • -1
                                    @ 2023-8-1 13:23:26
                                    #include <iostream>
                                    using namespace std;
                                    int main()
                                    {
                                        int a,b,c;//定义a,b,c变量
                                        cin >> a >> b >> c;//输入a,b,c
                                        if (a+b>c)//判断a+b是否大于c
                                        {
                                            cout << "yes";//输出yes
                                        }
                                        else
                                        {
                                            cout << "no";//否则输出no
                                        }
                                        return 0;
                                    }
                                    
                                    • -1
                                      @ 2023-8-1 10:13:37

                                      先int,再cin,然后if搞定!上代码!

                                      #include <iostream>
                                      using namespace std;
                                      int main()
                                      {
                                          int a,b,c;//定义a,b,c这3个变量
                                          cin >> a >> b >> c;//输入a,b,c
                                          if (a+b>c)//判断a+b是否大于c
                                          {
                                              cout << "yes";//如果a+b大于c,就输出yes
                                          }
                                          else
                                          {
                                              cout << "no";//否则输出no
                                          }
                                          return 0;
                                      }
                                      
                                      

                                      信息

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