52 条题解

  • 0
    @ 2023-7-20 21:14:39
    #include <bits/stdc++.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;
    }
    
    • 0
      @ 2023-7-20 21:13:47
      #include <bits/stdc++.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;
      }
      
      • 0
        @ 2023-7-4 12:37:34
        #include <bits/stdc++.h>
        using namespace std;
        int n;
        int main()
        {
            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;
        }
        
        • 0
          @ 2023-6-30 18:43:03
          #include <bits/stdc++.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;
          }
          
          • 0
            @ 2023-6-25 12:56:19
            #include<iostream>
            using namespace std;
            int sum(int s,int l)
            {
                if(s%l==0)
                {
                    cout<<l<<endl;
                }
            }
            int main()
            {
                int n;
                cin>>n;
                sum(n,2);
                sum(n,3); 
                sum(n,5); 
                sum(n,7); 
            }
            
            • 0
              @ 2023-5-28 14:50:48

              我这个人内心非常简单,直接上吧!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

              #include <iostream>
              using namespace std;
              int main()
              {
                  int z;
                  cin>>z;
                  if(z%2==0)
                  {
                      cout<<"2"<<endl;
                  }
                  if(z%3==0)
                  {
                      cout<<"3"<<endl;
                  }
                  if(z%5==0)
                  {
                      cout<<"5"<<endl;
                  }
                  if(z%7==0)
                  {
                      cout<<"7"<<endl;
                  }
              }
              
              • 0
                @ 2023-5-13 9:36:06
                #include <bits/stdc++.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;
                }
                
                • 0
                  @ 2023-5-10 21:42:11

                  #include <bits/stdc++.h> using namespace std; int main() {

                  int n; cin>>n; if(n%20)//判断n是否能被2整除 { cout<<"2"<<endl;//是,输出2 } if(n%30)//判断n是否能被3整除 { cout<<"3"<<endl;//是,输出3 } if(n%50)//判断n是否能被5整除 { cout<<"5"<<endl;//是,输出5 } if(n%70)//判断n是否能被7整除 { cout<<"7"<<endl;//是,输出7 } return 0; }//这道题过于简单

                  • 0
                    @ 2023-4-29 9:23:56
                    #include <bits/stdc++.h>
                    using namespace std;
                    int main()
                    {
                        int a;
                        cin >> a;
                        if(a%2==0)
                        {
                            cout << "2" << endl;
                        }
                        if(a%3==0)
                        {
                            cout << "3" << endl;
                        }
                        if(a%5==0)
                        {
                            cout << "5" << endl;
                        }
                        if(a%7==0)
                        {
                            cout << "7" << endl;
                        }
                    }
                    
                    • 0
                      @ 2023-2-15 17:38:33

                      日常第1题,上代码!!!

                      🚀️

                      #include <bits/stdc++.h>
                      using namespace std;
                      void check(int x,int n){
                          if(n % x == 0){
                              cout << x << endl;
                          }
                      }
                      int main(){
                          int n;
                          cin >> n;
                          check(2,n);
                          check(3,n);
                          check(5,n);
                          check(7,n);
                          return 0;
                      }
                      

                      🚀️ 记得先点赞再抱走哦~ WA代码,“放心”使用 AC代码, 放心使用

                      • 0
                        @ 2023-1-10 20:10:40
                        #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;
                        } 
                        
                        
                        
                        
                        • 0
                          @ 2023-1-7 16:58:36

                          上代码,注:用if-if-if-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;
                          }
                          
                          • 0
                            @ 2022-9-4 10:34:31
                            #include<bits/stdc++.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;
                            	}	
                            } 
                            
                            • 0
                              @ 2022-8-22 9:54:04

                              if判断即可,注意不要用else if

                              #include <bits/stdc++.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;
                                  }
                                  return 0;
                              }
                              
                              • 0
                                @ 2022-8-11 21:28:14

                                用if 即可 以下是代码

                                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" << endl;//能,输出7,并换行
                                return 0;
                                
                                • 0
                                  @ 2022-8-3 16:51:34

                                  使用数组存储除数,相对写的少一点

                                  #include <iostream>
                                  using namespace std;
                                  int n , m[4] = {2,3,5,7};
                                  int main(){
                                  	cin >> n ;//真的没啥好解释的
                                  	for(int i = 0 ; i < 4 ; i ++)
                                  		if(n % m[i] == 0)
                                  			cout << m[i] << '\n';
                                  }
                                  
                                  • 0
                                    @ 2022-7-13 19:32:07
                                    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;
                                    }****
                                    
                                    
                                    
                                    • 0
                                      @ 2022-6-3 16:30:07

                                      这题太简单了,直接上代码:

                                      	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;
                                      

                                      注意:不用if...elseif...elseif...elseif...!

                                      • 0
                                        @ 2022-5-23 14:29:21

                                        根据从小到大的顺序依次去判断就好

                                        判断一个数是否被另一个数整除,只要求余的结果为0就表示可以整除

                                        注意使用多个if语句,不要使用if-else if-else,因为一个数可以满足多个条件

                                         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;
                                        
                                        • 0
                                          @ 2022-4-24 15:54:06

                                          鼓励大家写题解,但注意题解格式。

                                          给代码两端加上这个会舒服一些

                                          ```cpp

                                          你的代码

                                          ```

                                          </span>

                                          这个点在键盘的左上角tab上面那个键,注意切换输入法

                                          #include<iostream>
                                          using namespace std;
                                          int main()
                                          {
                                              int n;
                                              cin>>n;//这是一个注释
                                              return 0;
                                          } 
                                          

                                          请注意严禁抄袭题解,写题解不要只放代码,需加上你的思路或代码注释。

                                          抄袭题解一经发现直接取消成绩。

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

                                          信息

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