74 条题解

  • 52
    @ 2022-8-9 20:33:14

    @所有人,不要直接输出答案!有意思吗?我们要的是做题的过程,来看看思路吧~我们可以用 for循环来一次判断乙除以甲是否没有余数并且等于2,成立就直接输出循环次数,并且return 0终止程序。上代码!

    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int jia = 17, yi = 25;
        for (int i=1;i<=100;i++)
        {
            jia -= 1;
            yi += 1;
            if (yi / jia == 2 && yi % jia == 0)
            {
                cout << i;
                return 0;
            }
        }
        return 0;
    }
    
    • @ 2023-8-18 17:36:33

      题解我只看你的

    • @ 2023-8-18 21:36:27

      +1

    • @ 2023-8-23 10:31:09

      if (赞*4==100) { cout << "牛掰"; } return 0;

    • @ 2023-8-25 20:24:34

      解题我只看你的,你的最好,能交个朋友吗?我是一只射手座的小火龙~

    • @ 2023-8-26 16:42:46

      @

    • @ 2023-8-26 16:43:16

      @

    • @ 2023-8-26 16:46:04

      题解我也只看你的,交个朋友? 请问你是男的还是女的? (·: (?。?)

    • @ 2023-12-4 21:03:08

      @

    • @ 2023-12-4 21:03:21

      fg

    • @ 2024-2-1 13:39:33

      大大,你怎么这么牛bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb。 看完后我在想:为啥我这么SB,很简单理解呀!(打脸中......)

  • 17
    @ 2022-10-23 21:10:32
    //方法一(推荐)
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int a = 17, b = 25, i = 0;
        while (b != 2 * a)
        {
            a--;
            b++;
            i++;
        }
        cout << i;
    	return 0; 
    }
    
    //方法三(懒人必看)
    #include <iostream>
    using namespace std;
    int main()
    {
        cout << 3;
        return 0;
    }
    

    题解不易,点个赞再走呗~~

    • 4
      @ 2023-8-16 17:36:55
      #include <bits/stdc++.h>
      using namespace std;
      int main()
      {
          cout << 3;//算出来的,方程:设调走的人数为想,25+x = (17-x)*2 25+x = 34-2x,25+3x = 34,3x = 9,x = 3
      }
      

      直接AC!不给机会WA!

      编码不易😕,点赞走起👀️ 记得点赞再抱走奥😄

    • 1
      @ 2024-1-11 9:48:23

      #include <iostream> using namespace std; int main() { int s,j;//s是甲和乙的和 s=17+25;//求和 j=s/3;//甲是一份,乙是两份,运用六年级的知识可得甲是全部的1/3,即甲=全部/3 cout <<17-j;//输出少了多少 }

      • 1
        @ 2023-8-27 9:48:22

        AC代码

        #include<iostream>
        using namespace std;
        int main()
        {
        int n;
        cin>>n;
        cout<<17-(17+25)/3;
        return 0;
        }
        

        求赞

        • 1
          @ 2023-8-23 23:04:14
          #include <iostream>
          
          using namespace std;
          
          int main()
          {
              cout << 3 << endl;
          
              return 0;
          }
          

          嘿嘿~~~

          • 1
            @ 2023-8-20 11:53:10

            简单

            #include <iostream>
            using namespace std;
            int main()
            {
                int a=17,b=25;
                for (int i = 1;i>0;i++)
                {
                    if((b+i)/(a-i)==2&&(b+i)%(a-i)==0)
                    {
                        cout<<i;
                        return 0;
                    }
                }
            }
            
            • 1
              @ 2023-8-17 18:55:15
              #include<iostream> 
              using namespace std;
              int main()
              {
                  for(int i=1; i <= 17-1; i++)
                  {
                      if(2*(17-i)==25+i)
                      {
                          cout << i;
                      }
                  }
                  return 0;
              }
              
              • 1
                @ 2023-8-13 15:01:09
                #include<bits/stdc++.h>
                using namespace std;
                int main()
                {
                    cout << 17 - (25 + 17) / 3; //和倍问题公式😄,全网不偷鸡但最短!!!!!!!!!
                	return 0;
                }
                
              • 1
                @ 2023-8-6 9:20:27

                这个cout << 3 << endl;是通过计算算出来的

                • 1
                  @ 2023-8-6 9:18:05

                  这是数学题,可以直接算出答案,而且能AC

                  #include <iostream>
                  using namespace std;
                  int main()
                  {
                      cout << 3 << endl;
                      return 0;
                  }
                  
                  • 1
                    @ 2023-6-17 17:28:32
                    #include <bits/stdc++.h> 
                    using namespace std;
                    int main()
                    {
                       cout<<3;
                        return 0;
                    }
                    
                    • 0
                      @ 2024-3-10 10:18:13
                      #include <bits/stdc++.h>
                      using namespace std;
                      int main()
                      {
                          int A= 17, B = 25;
                          for (int i=1;i<=100;i++)
                          {
                              A -= 1;
                              B += 1;
                              if (A / B== 2 and A% B == 0)
                              {
                                  cout << i;
                                  return 0;
                              }
                          }
                          return 0;
                      }
                      
                      • 0
                        @ 2024-3-10 10:17:58
                        #include <bits/stdc++.h>
                        using namespace std;
                        int main()
                        {
                            int A= 17, B = 25;
                            for (int i=1;i<=100;i++)
                            {
                                A -= 1;
                                B += 1;
                                if (A / B== 2 and A% B == 0)
                                {
                                    cout << i;
                                    return 0;
                                }
                            }
                            return 0;
                        }
                        
                        • 0
                          @ 2024-2-27 21:47:25
                          #include <bits/stdc++.h>
                          using namespace std;
                          int main()
                          {
                              int a=17,b=25;
                              cout << (a+b)/((a+b)/6*2);
                              return 0;
                          }
                          
                          
                          
                          
                          
                          • 0
                            @ 2024-2-27 21:46:15
                            #include <bits/stdc++.h>
                            using namespace std;
                            int main()
                            {
                                int a=17,b=25;
                                cout << (a+b)/((a+b)/6*2);
                                return 0;
                            }
                            
                            • 0
                              @ 2024-2-27 18:02:05
                              #include<iostream>
                              using namespace std;
                              int main()
                              {
                                  int fdh = 17, ajb = 25;
                                  for(int i = 1; i <= 1342577; i ++)
                                  {
                                      fdh -= 1;
                                      ajb += 1;
                                      if (ajb % fdh == 0)
                                      {
                                          cout << i;
                                          break;
                                      }
                                  }
                              
                              • 0
                                @ 2024-2-8 10:30:16
                                这题很简单
                                #include<iostream>
                                using namespace std;
                                int main()
                                {
                                    cout<<3;
                                    return 0;
                                }
                                
                                • 0
                                  @ 2024-2-1 13:40:49
                                  #include <iostream>
                                  using namespace std;
                                  int main()
                                  {
                                      cout << "3";
                                      return 0;
                                  }
                                  
                                  • 0
                                    @ 2024-1-25 12:37:23
                                    #include <iostream>
                                    using  namespace std;
                                    int main()
                                    {
                                        int jia=17,yi=25;
                                        for (int i=17;i>0;i--)
                                        {
                                            if ((jia-i)*2==(yi+i))
                                            {
                                                cout<<i;
                                                return 0;
                                            }
                                        }
                                        return 0;
                                    }
                                    

                                    信息

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