47 条题解

  • 0
    @ 2023-1-2 15:02:07
    #include <iostream>
    using namespace std;
    int n;
    int main()
    {
        cin >> n;
        if (n == 1 || n == 3 || n == 5)
        {
            cout << "NO";
        }
        else
        {
            cout << "YES";
        }
        return 0;
    }
    //这道题还是很简单的,没对的要好好反省😄 
    
    • 0
      @ 2022-12-22 12:06:30

      可以用or... or语句

      • 0
        @ 2022-11-30 22:38:28

        if((a == 1) || (a == 3) || (a == 5)) { cout << "NO"; } else { cout << "YES"; }

        
        
        • 0
          @ 2022-11-20 20:23:32
          #include<iostream>
          using namespace std;
          int main()
          {
              int a;//定义
              cin>>a;//输入
              if (a!=1 and a!=3 and a!=5)//判断条件
              {
                  cout<<"YES";//输出
              }
              else//否则
              {
                  cout<<"NO";//输出
              }
              return 0;
          }
          
        • 0
          @ 2022-9-10 18:11:55

          我认为我的代码还是挺短的!!!

          #include <iostream>
          using namespace std;
          int main()
          {
              int n;
              cin>>n;
              if (n%2==0||n==7)//只需判断2个条件!!!
              {
                  cout<<"YES";
              }
              else
              {
                  cout<<"NO";
              }
          	return 0;
          }
          
          • 0
            @ 2022-9-1 18:23:42

            超级简单 int q; cin>>q; if (q1 or q3 or q==5 )//判断是否要上课 { cout<<"NO"; } else//没课 { cout<<"YES"; } return 0; 赞不要!!!

            • 0
              @ 2022-8-22 15:44:19

              //其实这道题很简单,只要一个if语句就行了。 #include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n1||n3||n==5)//判断是不是周一、周三、周五。 { cout<<"NO";//注意大写! } else { cout<<"YES"; } return 0; }

              • 0
                @ 2022-8-22 15:32:05
                • 0
                  @ 2022-5-23 19:19:52

                  1.使用if-else if -else语句结构一一去判断是否是1,3,5

                  2.使用if-else语句(使用逻辑运算符||)

                  • 0
                    @ 2022-4-30 12:57:40
                        if (n == 3 || n==5 || n==1)//判断1,3,5中任意一天 
                        {
                            cout << "NO";//注意大写
                        } 
                        else
                        {
                            cout << "YES";
                        }
                    

                    这里我用了4-1学的逻辑运算符,或者使用第三单元学习的if-else if-else if-else也可以

                    • 0
                      @ 2022-4-29 19:14:19

                      这题主要是用if来判断,用if判断是否1、3、5即可

                      • 0
                        @ 2022-4-24 15:48:33

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

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

                        ```cpp

                        你的代码

                        ```

                        </span>

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

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

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

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

                        • -1
                          @ 2023-12-3 9:52:00
                          #include <bits/stdc++.h>
                          using namespace std;
                          int main()
                          {
                              int n;
                              cin >> n;
                              if (n == 1 || n == 3 || n == 5) cout << "NO";
                              else cout << "YES";
                          	return 0;
                          }
                          
                          • -1
                            @ 2023-11-4 12:03:25
                            #include <iostream>//这题还看题解!!??
                            using namespace std;int main(){//格式你不会不知道吧
                            int a;cin>>a;//加变量
                            if(a==1 or a==3 or a==5){cout<<"NO";}//判断
                            else{cout<<"YES";}return 0;}//结束
                            
                            • -1
                              @ 2023-8-19 19:21:35

                              #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; if(n == 1) { cout << "NO"; } else if(n == 5) { cout << "NO"; } else if(n == 3) { cout << "NO"; } else { cout << "YES"; } return 0; }

                              • -1
                                @ 2023-8-19 19:21:24

                                ```cpp

                                #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; if(n == 1) { cout << "NO"; } else if(n == 5) { cout << "NO"; } else if(n == 3) { cout << "NO"; } else { cout << "YES"; } return 0; }

                                ```

                                </span>
                                • -1
                                  @ 2023-8-19 19:20:44

                                  #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; if(n == 1) { cout << "NO"; } else if(n == 5) { cout << "NO"; } else if(n == 3) { cout << "NO"; } else { cout << "YES"; } return 0; }

                                  • -1
                                    @ 2023-8-19 19:20:42

                                    #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; if(n == 1) { cout << "NO"; } else if(n == 5) { cout << "NO"; } else if(n == 3) { cout << "NO"; } else { cout << "YES"; } return 0; }

                                    • -1
                                      @ 2023-8-19 19:20:40

                                      #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; if(n == 1) { cout << "NO"; } else if(n == 5) { cout << "NO"; } else if(n == 3) { cout << "NO"; } else { cout << "YES"; } return 0; }

                                      • -1
                                        @ 2023-8-19 19:20:20

                                        #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; if(n == 1) { cout << "NO"; } else if(n == 5) { cout << "NO"; } else if(n == 3) { cout << "NO"; } else { cout << "YES"; } return 0; }

                                        信息

                                        ID
                                        1291
                                        时间
                                        1000ms
                                        内存
                                        256MiB
                                        难度
                                        3
                                        标签
                                        递交数
                                        3707
                                        已通过
                                        1865
                                        上传者