97 条题解

  • 0
    @ 2022-8-20 13:39:44
    #include<iostream>
    using namespace std;
    
    int main()
    {
        int a;
        cin>>a;
        if(a<100 && a>=10 && a%2==0)
        {
            cout<<"Yes";
        }
        else
        {
            cout<<"No";
        }
    
        return 0;
    }
    
    • 0
      @ 2022-8-18 17:45:24

      这道题其实比较简单,就是有一个很坑的地方,就是普通的题目一般就问你他是不是偶数只用这样写代码⬇

      if(数字 % 2 == 0)
      {
          cout << "Yes";
      }
      else
      {
          cout << "No";
      }
      

      就OK了 但是这道题你需要在多加一个判断是不是两位数的代码,也就是在判断条件里再加上这个⬇

      n / 10 <= 9 and n / 10 >= 1 才能做对这道题。

      • @ 2022-8-18 17:50:25

        一种答案是这样的⬇

        #include <iostream>//万能头也可以!!
        using namespace std;
        int main()
        {
            int n;
            cin >> n;
            if(n % 2 == 0 and n / 10 >= 1 and n / 10 <= 9) 
            {
                cout << "Yes";
            }
            else
            {
                cout << "No";
            }
            return 0;
        }
        
    • 0
      @ 2022-8-17 14:45:04
      #include <iostream> //万能头也可以
      using namespace std;
      int main()
      {
          int n;
          cin >> n;
          if(n % 2 == 0)//首先判断n是不是偶数
          {
              if(n / 10 >= 1 and n / 10 < 10)//再判断n是不是两位数
              {
                  cout << "Yes";
              }
              else
              {
                  cout << "No";
                  return 0;
              }
          }
          else
          {
              cout << "No";
              return 0;
          }
      }
      做题不易,请广大群众多多指教!❤❤❤
      
      • @ 2022-8-22 8:12:54
        #include<bits/stdc++.h>
        using namespace std;
        int main()
        {
            int a;
            cin>>a;
            if(a>=10&&a<100&&a%2==0)
            {
                cout<<"Yes";
                return 0;
            }
            cout<<"No";
            return 0;
        }
        
        
    • 0
      @ 2022-8-10 21:00:44

      #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";//正确输出yes else cout << "No";//错误输出no return 0; }

      • 0
        @ 2022-8-6 18:33:52

        在做题之前我们需要读懂题目~~ 输出Yes的条件是:n为两位数并且是偶数,其余均输出No。 代码如下:

        #include <bits/stdc++.h>
        using namespace std;
        int main()
        {
        	int n,ans;
            cin>>n;
            while(n>0)  //ans为n的位数。 
            {
                ans++;
                n/=10;
            }
            if(n%2==0 && ans%2==0)
            {
                cout<<"Yes";
            }
            else
            {
                cout<<"No";
            }
        	return 0;
         } 
        
        • 0
          @ 2022-8-5 9:52:06

          好神奇,这样子也能过

          #include <bits/stdc++.h>
          using namespace std;
          int main()
          {
              int n;
              cin>>n;
              if(n%2==0&&n/10==1) cout<<"Yes";
              else cout<<"No";
          }
          

          n/10==1也行,这是不是说明样例没有选好??

          这是通过的网站记录详情 - 核OJ_核桃编程 (hetao101.com)

          • @ 2023-8-9 19:23:03
            #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
          @ 2022-8-1 18:52:07

          # 代码,上

          #include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n>9) { if{(n%2==0) { if(n<100) { cout<<"Yes"; } else { cout<"No"; } } else { cout<<"No"; } } else { cout<<"No"; } return 0; } 😄

          • 0
            @ 2022-7-20 11:40:07
            #include <iostream>
            using namespace std;
            int main()
            {
                int n;
                cin >> n;
                if (10 <= n and n <= 99 and n % 2 == 0)//成立三要素
                {
                    cout << "Yes";
                }   
                else//排除不符合三个条件的任何东西!
                {
                    cout << "No";
                }
                return 0;
            }
            
            • 0
              @ 2022-7-8 18:53:04

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

              • 0
                @ 2022-7-8 15:46:56

                3步判断: 1.判断是否是>=三位数; 2.判断是否是一位数; 3.判断是否是偶数。

                • 0
                  @ 2022-7-7 21:17:24
                  #include <bits/stdc++.h>
                  using namespace std;
                  int main()
                  {
                      int n;
                      cin >> n;
                      if (n/100<1 && n%2 == 0 && n/10 > 0)
                      {
                          cout << "Yes";
                      }
                      else
                      {
                          cout << "No";
                      }
                      return 0;
                  }
                  
                  • 0
                    @ 2022-7-4 21:48:18
                    #include <iostream>
                    using namespace std;
                    int main()
                    {
                        int n;
                        cin >> n;
                        if (n % 2 == 0)//判断n是否为偶数
                        {
                            if (n / 10 > 0)//判断n是否不为1位数
                            {
                                if (n / 100 < 1)//判断n是否不为3位数
                                {
                                    cout << "Yes";
                                }
                                else
                                {
                                    cout << "No";
                                }
                            }
                            else
                            {
                                cout << "No";
                            }
                        }
                        else
                        {
                            cout << "No";
                        }
                        return 0;
                    }
                    
                    • 0
                      @ 2022-7-3 14:52:39

                      if 语句嵌套

                      • 0
                        @ 2022-7-1 10:21:33

                        #include <bits/stdc++.h> using namespace std; int main() { int x; cin >> x; if (x > 9) { if (x < 100) { if (x % 2 == 0) { cout << "Yes"; } else { cout << "No"; } } else { cout << "No"; } } else { cout << "No"; } return 0; }

                        • -1
                          @ 2023-11-21 21:56:26
                          #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;
                          }
                          

                          一手交赞一手交货

                          • -1
                            @ 2023-8-28 10:45:10
                            #include <bits/stdc++.h>
                            using namespace std;
                            int main()
                            {
                                string s;
                                cin >> s;
                                if (s.size() == 2 && (s[1] == '2' || s[1] == '4' || s[1] == '6' || s[1] == '8' || s[1] == '0'))
                                    cout << "Yes";
                                else
                                    cout << "No";
                                return 0;
                            }
                            
                            • -1
                              @ 2023-8-27 18:23:27

                              我看好多人都把逻辑运算符&&写成了and,虽然有and但是一般不用and

                              所以代码走起

                              #include <iostream>
                              using namespace std;
                              
                              int main() {
                                  int n, num = 0;
                                  cin >> n;
                                  if (n % 2 == 0 && n >= 10 && n < 100)
                                  {
                                      num = n / 2 + 1;
                                  }
                                  else
                                  {
                                      cout << "NO";
                                  }
                                  return 0;
                              }
                              

                              还是蛮易懂的 最后留下我的AC记录[](https://记录详情 - 核OJ_核桃编程 (hetao101.com))

                              • -1
                                @ 2023-8-17 19:37:53

                                你们好快

                                • -1
                                  @ 2023-8-14 14:29:13

                                  👍👎

                                  • -1
                                    @ 2023-8-14 12:44:05

                                    @阿aka奥利给,为啥能这样

                                    信息

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