52 条题解

  • 0
    @ 2022-2-26 20:20:25
    
    根据题目规则写清楚几个if的条件即可
    注意不要用if-else if
    因为一个数字可以满足多个条件
    
    	if (n%2==0)
    	{
    		cout<<"2"<<endl;
    	}
    	if (n%3==0)
    	{
    		cout<<"3"<<endl;
    	}
    	if (n%5==0)
    	{
    		cout<<"5"<<endl;
    	}
    	if (n%7==0)
    	{
    		cout<<"7"<<endl;
    	}
    
    • -1
      @ 2024-2-22 17:31:01

      兄弟们,这道题简直太太太简单了,话不多说上代码,绝对AC,没AC我吃屎!!!``` #include <iostream> using namespace std; int main() { int n; cin>>n; if(n%20) { cout<<"2"<<endl; } if(n%30) { cout<<"3"<<endl; } if(n%50) { cout<<"5"<<endl; } if(n%70) { cout<<"7"<<endl; } return 0; }

      
      
    • -1
      @ 2024-1-1 13:12:45
      #include<bits/stdc++.h>//AC
      using namespace std;
      int main()
      {
      int n;
      cin>>n;
      if(n%2==0)
      {
      cout<<2<<"\n";
      }
      if(n%3==0)
      {
      cout<<3<<"\n";
      }
      if(n%5==0)
      {
      cout<<5<<"\n";
      }
      if(n%7==0)
      {
      cout<<7<<"\n";
      }
      return 0;
      }
      
      • -1
        @ 2023-11-12 14:58:50

        这道题非常简单,用四个分支if语句即可完成,请看题解:

        #include <iostream>
        using namespace std;
        int main()
        {
            int n;
            cin >> n;
            if (n % 2 == 0)
            {
                cout << 2 << endl;
            }    
            if (n % 3 == 0)
            {
                cout << 3 << endl;
            }    
            if (n % 5 == 0)
            {
                cout << 5 << endl;
            }
            if (n % 7 == 0)
            {
                cout << 7 << endl;
            }
            return 0;
        }
        

        (已AC,请放心食用( •̀ ω •́ )✧~) 最后,请大家~~点个赞再走呗~~,谢谢!

        image

        • -1
          @ 2023-10-28 21:31:34

          没难度呀

          • @ 2024-2-2 14:54:51

            没难度你来发呀

            #include<iostream>
            using namespace std;
            int main()
            {
                int a;
                cin>>a;
                if (a%2==0)
                {
                    cout<<2<<endl;
                }
                for (int i=3;i<=7;i+=2)
                {
                    if (a%i==0)
                    {
                        cout<<i<<endl;
                    }
                }
            }
            
          • @ 2024-2-2 14:56:26

            再打一遍

            #include<iostream>
            using namespace std;
            int main()
            {
                int a;
                cin>>a;
                if (a%2==0)
                {
                    cout<<2<<endl;
                }
                for (int i=3;i<=7;i+=2)
                {
                    if (a%i==0)
                    {
                        cout<<i<<endl;
                    }
                }
            return 0;
            }
            
        • -1
          @ 2023-10-4 13:10:06

          较为简单(或是灰常简单)的if分支问题呦!挨个除遍就行啦!上代码: #include <iostream> using namespace std; int main() { int n; cin >> n; if (n % 2 == 0) { cout << "2" << endl; } if (n % 3 == 0) { cout << "3" << endl; } if (n % 5 == 0)**** { cout << "5" << endl; } if (n % 7 == 0) { cout << "7" << endl; } return 0; } 点赞再抱走哈!AC在N秒(N <= 30)后与你会面(除非网络不给力……)

          • -1
            @ 2023-10-4 12:10:49
            #include <iostream>
            using namespace std;
            int main()
            {
                int n;
                cin>>n;
                if (n%2==0)//判断是否能被2整除
                {
                    cout<<"2"<<endl;//输出2
                }
                if (n%3==0)//判断是否能被3整除
                {
                    cout<<"3"<<endl;//输出3
                }
                if (n%5==0)//判断是否能被5整除
                {
                    cout<<"5"<<endl;//输出5
                }
                if (n%7==0)//判断是否能被7整除
                {
                    cout<<"7";//输出7
                }
                return 0;
            }
            
            • -1
              @ 2023-10-2 21:33:16
              #include<bits/stdtr1c++.h>
                	using namespace std;
              int main()	
              {
                  int n;
                  cin>>n;
                  if(n%2==0){
                      cout<<2<<endl;
                  }
                  if(n%3==0){
                      cout<<3<<endl;
                  }
                  if(n%5==0){
                      cout<<5<<endl;
                  }
                  if(n%7==0){
                      cout<<7<<endl;
                  }
              	return 0;		
              }
              
              • -1
                @ 2023-10-2 21:32:29
                #include<bits/stdtr1c++.h>
                  	using namespace std;
                int main()	
                {
                    int n;
                    cin>>n;
                    if(n%2==0){
                        cout<<2<<endl;
                    }
                    if(n%3==0){
                        cout<<3<<endl;
                    }
                    if(n%5==0){
                        cout<<5<<endl;
                    }
                    if(n%7==0){
                        cout<<7<<endl;
                    }
                	return 0;		
                }
                
                
                • -1
                  @ 2023-10-1 17:42:32
                  #include<bits/stdtr1c++.h>
                    	using namespace std;
                  int main()	
                  {
                      int n;
                      cin>>n;
                      if(n%2==0){
                          cout<<2<<endl;
                      }
                      if(n%3==0){
                          cout<<3<<endl;
                      }
                      if(n%5==0){
                          cout<<5<<endl;
                      }
                      if(n%7==0){
                          cout<<7<<endl;
                      }
                  	return 0;		
                  }
                  
                  • -1
                    @ 2023-9-19 21:35:32
                    #include<bits/stdc++.h>
                    using namespace std;
                    int main()
                    {
                        int c;
                        cin >> c;
                        if(c % 2 == 0)
                        {
                            cout << "2" <<endl;
                        }
                        if(c % 3 == 0)
                        {
                            cout << "3"<<endl;
                        }
                        if(c % 5 == 0)
                        {
                            cout << "5"<<endl;
                        }
                        if(c % 7 == 0)
                        {
                            cout << "7"<<endl;
                        }
                        return 0;
                    }//已AC
                    
                    • -1
                      @ 2023-8-23 9:36:03
                      #include <iostream>
                      using namespace std;
                      int main()
                      {
                          int n;
                          cin>>n;
                          if (n%2==0)//判断是否能被2整除
                          {
                              cout<<"2"<<endl;//输出2
                          }
                          if (n%3==0)//判断是否能被3整除
                          {
                              cout<<"3"<<endl;//输出3
                          }
                          if (n%5==0)//判断是否能被5整除
                          {
                              cout<<"5"<<endl;//输出5
                          }
                          if (n%7==0)//判断是否能被7整除
                          {
                              cout<<"7";//输出7
                          }
                          return 0;
                      }
                      

                      编程不易😕 ,赞在哪里👀️ ?

                      【入门】请问一个整数n能够被2、3、5、7中哪些数整除

                      信息

                      ID
                      296
                      时间
                      1000ms
                      内存
                      16MiB
                      难度
                      2
                      标签
                      递交数
                      3335
                      已通过
                      1986
                      上传者