97 条题解

  • 0
    @ 2023-8-2 21:38:32
    #include <iostream> //头文件
    using namespace std;//命名空间
    int main()//主含数
    {
        int n;//变量n
        cin>>n;//输入变量n
        if(n<100 and n>9 and n%2==0)//判断
        {
            cout<<"Yes";//输出
        }
        else
        {
            cout<<"No";//输出
        }
        return 0;//了当
    }
    
    • 0
      @ 2023-8-2 21:35:00
      #include <iostream> //头文件
      using namespace std;//命名空间
      int main()//主含数
      {
          int n;//变量n
          cin>>n;//输入变量n
          if(n<100 and n>9 and n%2==0)//判断
          {
              cout<<"Yes";//输出
          }
          else
          {
              cout<<"No";//输出
          }
          return 0;//了当
      }
      
      • 0
        @ 2023-8-2 19:47:08
        #include <bits/stdc++.h> 
        using namespace std;
        int main()
        {
            int n;
            cin >> n;
            if(n % 2 == 0)//先判断是否为偶数,若是,继续判断是否为两位数。
            {
                if(n / 10 <= 9 and n / 10 >= 1)//判断是否为两位数,因为一个两位数,除以10后的商必在1~9之内,由此可以判断。
                {
                    cout << "Yes" << endl;
                }
                else
                {
                    cout << "No" << endl;
                }
            }
            else//若不是偶数,输出No
            {
                cout << "No" << endl;
            }
            return 0;
        }
        
        • 0
          @ 2023-7-18 21:21:52
          #include <iostream>
          using namespace std;
          int main()
          {
             int n;
             cin >> n;
             if (n%2==0)//判断n是否为偶数
             {
                if (n/10<10 && 0<n/10)//两位数除以10的商在1到9之间
                {
                   cout << "Yes";
                }
             }
             cout << "No";
             return 0;
          }
          
          • 0
            @ 2023-6-26 10:43:45
            #include <iostream>
            using namespace std;
            int main()
            {
                int n;
                cin >> n;
                if (n % 2 == 0 && n > 10 & n < 100)
                {
                    cout << "Yes";
                }
                else 
                {
                    cout << "No";
                }
            }
            
            
            • 0
              @ 2023-6-4 9:37:40
              #include<iostream>
              using namespace std;
              int main()
              {
              	int a;
              	cin>>a;
              	if((a>=10)&&(a<=99) and a%2==0) cout<<"Yes"<<endl;
              	else cout<<"No"<<endl;
              	return 0;
              }
              
              • 0
                @ 2023-5-21 18:46:35
                #include <iostream>
                using namespace std;
                
                int main() {
                    int n;
                    cin >> n;
                
                    if (n >= 10 && n <= 99 && n % 2 == 0) {
                        cout << "Yes" << endl;
                    } else {
                        cout << "No" << endl;
                    }
                
                    return 0;
                }
                

                记得点赞

                • 0
                  @ 2023-5-20 10:17:34
                  #include <iostream>
                  using namespace std;
                  int main()
                  {
                      int a;
                      cin >> a;
                      if ((a / 10) < 10 && a % 2 == 0 && a / 10 > 0)//判断
                      {
                          cout << "Yes";//输出
                      }
                      else
                      {
                          cout << "No";
                      }
                      return 0;
                  }
                  
                  • 0
                    @ 2023-5-2 15:51:57

                    第一个用布尔的人......

                        int n;
                        bool a,b;//定义
                        double c;
                        cin >> n;
                        a = (n % 2 == 0);//定值
                        c = n * 1.0 / 10;
                        b = (c >= 1 && c < 10);
                        if (a && b)//都成立
                        {
                            cout << "Yes";
                        }
                        else
                        {
                            cout << "No";
                        }
                    

                    </span>

                    怎么样?

                    点赞走起!!!ヾ(≧▽≦*)o

                    • 0
                      @ 2023-3-28 21:46:24
                      #include<bits/stdc++.h>
                      using namespace std;
                      int main()
                      {
                          int x;
                          cin>>x;
                          if (x/100==0&&x%2==0&&x/10>0)
                              cout<<"Yes";
                          else
                              cout<<"No";
                          return 0;
                      }
                      
                      • 0
                        @ 2023-3-11 12:08:30
                        1. #include <iostream>
                        using namespace std;
                        int main()
                        {
                            int n;
                            cin >> n;
                            if (n%2==0)
                            {
                                if (n>=10)
                                {
                                    if (n<=99)
                                    {
                                        cout << "Yes";
                                    }
                                    else
                                    {
                                        cout << "No";
                                    }
                                }
                                else
                                {
                                    cout << "No";
                                }
                            }
                            else
                            {
                                cout << "No";
                            }
                            return 0;
                        }
                        

                        ❤️ ❤️ ❤️

                        • 0
                          @ 2023-3-9 21:00:56

                          #include <iostream> using namespace std; int main(){ int n; cin >> n; if (n % 2 == 0)//判断n是否为偶数 { if ((n/10>=1)&&(n/10<=9))//判断十位是否大于1且小于9 { cout << "Yes";//如果是,输出yes } else { cout << "No";//不是,输出no } } else { cout << "No";//不是偶数,输出no } return 0; }

                          # ❤️ ****************************

                          • 0
                            @ 2023-2-26 17:05:35
                            #include <bits/stdc++.h> 
                            using namespace std;
                            int main()
                            {
                                int n;
                                cin >> n;
                                if(n % 2 == 0)
                                {
                                    if(n / 10 <= 9 and n / 10 >= 1)
                                    {
                                        cout << "Yes" << endl;
                                    }
                                    else
                                    {
                                        cout << "No" << endl;
                                    }
                                }
                                else
                                {
                                    cout << "No" << endl;
                                }
                                return 0;
                            }
                            
                            • 0
                              @ 2023-2-25 16:33:18

                              简单一点

                              #include <iostream>
                              using namespace std;
                              int main()
                              {
                                  int a;
                                  cin >> a;
                                  if (a < 100 and a>9 and a %2 == 0)//判断条件
                                  {
                                      cout << "Yes";
                                  }
                                  else
                                  {
                                      cout << "No";
                                  }
                                  return 0;
                              }
                              
                              • 0
                                @ 2023-2-15 19:30:56

                                非常腥气的

                                👍 #include <bits/stdc++.h> using namespace std; int main() { string q,w="Yes",e="No",r,t,y,u,i,o,p,a,s,d,f,g,h,j,k,l,z,x,c,v,b,n,m;

                                cin>>q; if(q.length()2&&q[1]-'0'%20) { cout<<w; return 0; } cout<<e; return 0; }

                                • 0
                                  @ 2023-2-6 14:52:15
                                  #include <bits/stdc++.h>
                                  using namespace std;
                                  int main()
                                  {
                                      int n;//定义n
                                      cin >> n;//输入n
                                      if (n<=100 && n>=10 && n%2==0)//判断是两位偶数
                                      {
                                          cout << "Yes";
                                      }
                                      else//不是
                                      {
                                          cout << "No";
                                      }
                                      return 0;
                                  }
                                  
                                  • 0
                                    @ 2023-2-5 21:33:12
                                    #include <iostream>
                                    using namespace std;
                                    int main()
                                    {
                                        int n;
                                        cin>>n;
                                        if (n/10<10 and n/10>=1 and n%2!=1)//判断是否为两位偶数
                                        {
                                            cout<<"Yes";
                                        }
                                        else
                                        {
                                            cout<<"No";
                                        }
                                        return 0;
                                    }
                                    
                                    
                                    • 0
                                      @ 2022-8-30 9:41:53

                                      #include <iostream> using namespace std; int main() { int n; cin >> n; if(n/10>=10||n/100) { cout<<"No"; } else { if(n%20) { cout<<"Yes"; } else { cout <<"No"; } } return 0; }

                                      • 0
                                        @ 2022-8-25 21:19:22

                                        就简单判断一下就可以了。上代码!

                                        #include <bits/stdc++.h>
                                        using namespace std;
                                        int main()
                                        {
                                            int n;
                                            cin >> n;
                                            if (n % 2 == 0)
                                            {
                                                if (n / 10 <= 9 and n / 10 >= 1)
                                                {
                                                    cout << "Yes";
                                                }
                                                else
                                                {
                                                    cout << "No";
                                                }
                                            }
                                            else
                                            {
                                                cout << "No";
                                            }
                                            return 0;
                                        }
                                        
                                        • 0
                                          @ 2022-8-21 12:07:47

                                          最简单易懂的方法👀️

                                          using namespace std;
                                          int main()
                                          {
                                              int a;
                                              cin>>a;
                                              if(a%2==0 && a<100 && a>=10)
                                              {
                                                  cout<<"Yes";
                                              }
                                              else
                                              {
                                                  cout<<"No";    
                                              }
                                              return 0;
                                          }
                                          

                                          信息

                                          ID
                                          653
                                          时间
                                          1000ms
                                          内存
                                          16MiB
                                          难度
                                          6
                                          标签
                                          递交数
                                          12241
                                          已通过
                                          3816
                                          上传者