97 条题解

  • 0
    @ 2023-11-12 10:39:52
    #include <bits/stdc++.h>
    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-10-29 18:43:59
      using namespace std;
      int main()
      {
      int n;
      cin >> n;
      if (n%2 == 0 && n/10>0 && n/100 == 0)
      {
      cout << "Yes";
      }
      else
      {
      cout << "No";
      }
      return 0;
      }
      
    • 0
      @ 2023-10-15 14:51:12

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

      • 0
        @ 2023-8-28 8:11:47
        ###这才是AC!上代码!### 
        #include <iostream>
        int main()
        {
            std::cout << "No";//相信我
            return 0;
        }
        //一手交赞,一手交货(代码)
        
        
        
        
        
        
        //核桃hetao1609095编程
        //水印
        
        • 0
          @ 2023-8-28 8:09:04
          ###if,else加上&&符号就行了,不废话,上代码!### 
          #include <bits/stdc++.h>//万能开头
          using namespace std;
          int n;//定义变量
          int main()
          {
              cin>>n;//输入变量
              if(n<100&&n>9&&n%2==0)//用&&(and)
              {
                  cout<<"Yes";
              }
              else
              {
                  cout<<"No";
              }
              return 0;
          }
          //一手交赞,一手交货(代码)
          
          
          
          
          
          //核桃hetao1609095编程
          //水印
          
          • 0
            @ 2023-8-13 16:32:46

            #include<iostream> using namespace std; int main() { int n,m,sum=0; cin>>n; if (n%2==0)//判断n是否是偶数 { if (n<100 and n>=10)//判断n是否在10-100以内 { cout<<"Yes"; } else { cout<<"No"; } } else { cout<<"No"; } return 0; }

            • 0
              @ 2023-8-12 12:10:00
              #include <iostream>//已AC
              using namespace std;
              int main()
              {
                  int n;
                  cin>>n;
                  if(n/10>=1 and n/10<=9 and n%2==0)//判断是否是两位数和偶数
                  {
                      cout<<"Yes";//输出
                  }
                  else
                  {
                      cout<<"No";//输出
                  }
              	return 0;
              }
              
              • 0
                @ 2023-8-12 11:56:08
                if (n%2==0)//判断n是否是偶数
                {
                    if (n<100 and n>=10)//判断n是否在10-100以内
                    {
                       cout<<"Yes";
                    }
                    else
                    {
                       cout<<"No";
                    }
                }
                else
                {
                    cout<<"No";
                }
                

                以上是核心代码。

                • 0
                  @ 2023-8-10 18:28:38

                  本蒟蒻的第三篇题解

                  我看题解发布的代码都好简单,是钻样例的空子吗


                  题目传送门: P653 【入门】是两位的偶数吗


                  为了避免钻题目的空子,蒟蒻在这里把所有的情况都判断了一遍: 1,输入的数据是0 2,输入的数据是一位偶数 3,输入的数据是两位偶数 4,输入的数据是两位奇数 5,输入的数据不是两位数 6,输入的数据是负数


                  AC CODE 如下:

                  #include <bits/stdc++.h>//使用万能头文件
                  using namespace std;//创建明明空间
                  int main ()//不写的都是大佬
                  {
                      int a;//定义输入的整数变量为a
                      cin >> a;//输入a
                      if (a / 100 >= 1)//判断是不是比两位数大的数,即看除以一百还有没有数
                      {
                          cout << "No";//如果有第三位数,输出no
                          return 0;
                      }
                      else if (a == 0)//如果a的值是0;
                      {
                      	cout << "No";//输出no
                      	return 0;
                  	}
                  	else if (a < 0)//如果a 的值是负数
                  	{
                  		cout << "No";//输出no
                  		return 0;
                  	}
                  	else if (a < 10)//如果a不是比两位数小
                  	{
                  		cout << "No";//输出no
                  		return 0;
                  	}
                      else//如果以上输出no的条件都不满足,即a为两位数
                      {
                          if (a % 2 == 0)//判断是不是偶数
                          {
                              cout << "Yes";//如果是偶数,输出yes
                          }
                          else//否则
                          {
                              cout << "No";//输出no
                          }
                      }
                      return 0;//保持return 0 的好习惯!
                  }
                  
                  =)完结撒花!🎉️
                  • 0
                    @ 2023-8-10 16:27:53
                    #include <iostream>
                    using namespace std;
                    int main()
                    {
                        int a;
                        cin >> a;
                        if (a >= 10 and a < 100)
                        {
                            if (a % 2 == 0)
                            {
                                cout << "Yes";
                            }
                            else
                            {
                                cout << "No";
                            }
                        }
                        else
                        {
                            cout << "No";
                        }
                        return 0;
                    }
                    
                    • 0
                      @ 2023-8-9 19:20:55
                      #include <iostream>
                      using namespace std;
                      int main()
                      {
                          int a;
                          cin>>a;
                          if (a/10<=9 && a/10>0 && a%2==0)
                          {
                              cout<<"Yes";
                              return 0;
                          }
                          cout<<"No";
                      }
                      
                      • 0
                        @ 2023-8-8 12:16:40
                        #include<iostream>
                        using namespace std;
                        int main()
                        {
                            int n;
                            cin >> n;
                            if (n % 2 == 0 and n >= 10 and n < 99) 
                            {
                                cout << "Yes";
                            }    
                            else{
                                cout << "No";
                            }
                            return 0; 
                        } 
                        
                        • 0
                          @ 2023-8-7 10:21: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;
                          }
                          

                          Copy

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

                          • 0
                            @ 2023-8-7 10:20:38
                            #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-8-6 21:24:31

                              LTC 地震当天


                              #include<iostream>
                              using namespace std;
                              int main()
                              {
                                  int a;
                                  cin>>a;
                                  if(a/10<10 and a%2==0 and a/10>0)
                                  {
                                      cout<<"Yes";
                                  }
                                  else
                                  {
                                      cout<<"No";
                                  }
                                  return 0;
                              }
                              
                              • 0
                                @ 2023-8-6 17:36:25

                                #include <iostream> using namespace std; int main() { int n; cin >> n; if ((n > 9 && n < 100) && n % 2 == 0) { cout << "Yes"; } else { cout << "No"; } return 0; } 第一次写题解😕

                                • 0
                                  @ 2023-8-6 14:53:33

                                  这样可以更快 #include <iostream> using namespace std; int main() { int n; cin >> n; cout << "No"; return 0; }

                                  
                                  
                                  • 0
                                    @ 2023-8-4 16:34:18

                                    这道题非常的简单。 你只需要:

                                    //定义变量n //if判断变量(两位数?偶数?) //输出结果(yes/no)

                                    • 0
                                      @ 2023-8-4 13:15:40

                                      神奇的题解!

                                      #include <iostream>
                                      int main()
                                      {
                                          std::cout << "No";
                                          return 0;
                                      }
                                      
                                      • 0
                                        @ 2023-8-4 11:25:58
                                        #include <iostream>
                                        using namespace std;
                                        int main()
                                        {
                                            int n, f = 0;
                                            cin >> n;
                                            if (n >= 10)
                                            {
                                                if (n < 100)
                                                {
                                                    if (n % 2 == 0)
                                                    {
                                                        f = 1;
                                                        cout << "Yes" << endl;
                                                        //我还没学过怎么判断同时成立,就用了if嵌套,如果有人知道,可以回复
                                                    }
                                                }
                                            }
                                            if (f == 0)
                                            {
                                                cout << "No" << endl;
                                            }
                                            return 0;
                                        }
                                        
                                        • @ 2023-8-9 19:22:43
                                          #include <iostream>
                                          using namespace std;
                                          int main()
                                          {
                                              int a;
                                              cin>>a;
                                              if (a/10<=9 && a/10>0 && a%2==0)
                                              {
                                                  cout<<"Yes";
                                                  return 0;
                                              }
                                              cout<<"No";
                                          }
                                          

                                      信息

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