74 条题解

  • 0
    @ 2023-7-29 18:34:54

    #include <iostream> using namespace std; int main() { int a = 17,b = 25,sum = 0; for (int i = 1;i < 2000;i++) { a--; b++; sum++; if (a * 2 == b) { cout << sum; break; } } return 0; } 一个简单粗暴的办法,可以参考一下

    • 0
      @ 2023-7-21 11:45:02

      #include <bits/stdc++.h> using namespace std; int main() { cout<<3; return 0; }

      • 0
        @ 2023-7-12 17:01:54
        #include <iostream>
        using namespace std;
        int main()
        {
            int a=17,b = 25;
            cout << a-(a+b)/3;
            return 0;
        }
        
        • 0
          @ 2023-7-3 14:49:02

          /这题很简单,用一个简单的while循环和一个if判断就可以啦!/ #include <iostream> #include <bits/stdc++.h> using namespace std; int main(){ int jia =17,yi =25,sum=0; while(true){ if (yi == jia *2){ break; } jia-=1; yi+=1; sum+=1; } cout<<sum; } /已AC,放心食用。看完记得点赞哦/

          • 0
            @ 2023-6-24 11:04:42
            #include <bits/stdc++.h>
            using namespace std;
            int main()
            {
                cout<<3;
                return 0;
            }
            

            直接AC!不给机会!

          • 0
            @ 2023-5-10 20:22:12
            #include<bits/stdc++.h>
            using namespace std;
            int main()
            {
            	cout<<3;
            	return 0;
            } 
            
            • 0
              @ 2023-3-28 22:24:57
              #include<bits/stdc++.h>
              using namespace std;
              int main()
              {
                  cout<<17-(17+25)/3;
                  return 0;
              }
              
              • 0
                @ 2023-3-12 20:13:09
                //太简单!用方程轻松解决!17 + 25 = 42
                //42 / 17 = 3
                //x = 3
                //不说了,上代码,懒人必看!
                #include<bits/stdc++.h>
                using namespace std;
                int main()
                {
                	cout << 3;
                	return 0; 
                }
                //编码不易,先点赞后抱走啊!~😄 
                
                • 0
                  @ 2023-3-11 19:44:20

                  #include<iostream> int main() { std::cout<<3; }

                  • 0
                    @ 2023-1-20 20:06:03

                    我们把甲看做一份,乙看作两份,sum看作三份,如果甲是乙的三分之一,则满足题目要求。 image

                    • 0
                      @ 2022-11-1 14:51:10

                      #include <bits/stdc++.h> using namespace std; int main(){ cout <<"3"; return 0; }

                      • 0
                        @ 2022-9-28 21:53:06
                        #include <bits/stdc++.h> 
                        using namespace std;
                        int main()
                        {
                            cout<<3;
                            return 0;
                        }
                        

                        最离谱的方法,不要学

                        • 0
                          @ 2022-9-21 22:05:01

                          这道题一如既往的简单。

                          但是我用了个笨办法,我们每次一个人一个人的调离,累加一共调了几次,然后看看是否满足题目的要求。

                          于是,我用了 * while * 循环。它看起来是这样子的:

                          while(一个判断)
                          {
                              什么什么的;
                          }
                          

                          于是,我用了个变量 i 来计算调了多少人。

                          于是,话不多说上代码。

                          #include<bits/stdc++.h>
                          using namespace std;
                          int main()
                          {
                              int a = 17, b = 25, i = 0;
                              while (b != 2 * a)          //不用再满足 b 是否是 a 的倍数之类的什么什么的了。
                              {
                                  a --;
                                  b ++;
                                  i ++;
                              }
                              cout << i << endl;
                          	re turn 0; 
                          }
                          

                          小盆友们,您学会了吗?

                          复制? 代码不易,先点赞,再复制吧! (不要忘了删倒数第二行的空格!)

                          • 0
                            @ 2022-8-22 17:39:34

                            简单的数学问题,用方程可得出等式(甲:17,乙:25,抽取的人数:x)

                            17+25=42
                            42/17=3
                                x=3
                            

                            根据这个等式,直接输出x就是3就可以啦

                            cout << "3";||cout << x;
                            
                            • @ 2022-8-22 17:40:02

                              这个意思是说输出3或者x都可以

                            • @ 2022-9-21 22:06:19

                              这样有什么意义......最后只是输出了一个数啊。

                          • -1
                            @ 2023-12-4 20:59:54

                            hh

                            • -1
                              @ 2023-8-25 20:05:05

                              同志们,我来发题解了!!!你们想要直接cout答案我也倒是不阻拦,但竟然刷到了这条信息,请好心人帮我往上顶(感谢感谢!❤️ )也希望你们能弄懂这道题 我就来教你们数学吧!😄首先我们可以先算出甲乙两班的总人数。从“交换后,乙班的人数是甲班的2倍”中可以知道他们是倍数关系,乙2倍,甲1倍,一共就是3倍,(总人数除以总倍数=一倍,相当于交换后的甲,再简化一些就是总数除以份数=每份数)又因为(之前的甲-现在的甲=甲调到乙的人数)就得出了答案。 简单版(全是算试)17+25=42人;1+2=3(倍);42/3=14人;17-14=3人; 创作不易,求赞👀️ 拜托拜托

                              • -1
                                @ 2023-8-21 19:53:45

                                也是非常的简单 #include <bits/stdc++.h> using namespace std; int main() { int n=17,m=25; cout << n-(n+m)/3 << endl; return 0; }

                              • -1
                                @ 2023-8-19 19:43:15
                                #include <iostream> 
                                using namespace std;
                                int main()
                                {
                                    cout<<3;
                                    return 0;
                                }
                                
                                
                                • -1
                                  @ 2023-8-19 14:49:51

                                  #include <iostream> using namespace std; int main() { cout << 3; return 0; }//不需要任何操作,测试就一道题!懒人必看!

                                  • -1
                                    @ 2023-8-17 21:09:11

                                    `懒人方法,建议还是自创,题目简单,但还是要自己算。`` #include <iostream> using namespace std; int main() { cout<<'3'; return 0; }

                                    
                                    

                                    信息

                                    ID
                                    346
                                    时间
                                    1000ms
                                    内存
                                    16MiB
                                    难度
                                    3
                                    标签
                                    递交数
                                    4651
                                    已通过
                                    2683
                                    上传者