8 条题解

  • 1
    @ 2026-8-4 17:12:47

    fgjfgjfgjh

    • 1
      @ 2026-8-4 17:12:31

      hghgmghmghmgh

      • 1
        @ 2026-8-4 15:47:32

        int main() { int a, b; cin >> a >> b; if (a, b < 60) cout << "1"; else cout << "0"; return 0; }

        • -1
          @ 2026-8-4 16:03:04

          #include <bits/stdc++.h> using namespace std;

          int main() { int x, y; cin >> x >> y; if (x < 60 && y >= 60 || x >= 60 && y < 60) { cout << "1"; } else cout << "0"; return 0; }

          • -1
            @ 2026-8-4 15:56:19

            #include <bits/stdc++.h> using namespace std;

            int main() { int a, b; cin >> a >> b; if (a < 60 && b > 60 || a > 60 && b < 60) { cout << "1"; } else { cout << "0"; } return 0; }

            • -1
              @ 2026-8-4 15:56:03

              #include <bits/stdc++.h> using namespace std;

              int main() { int a, b; cin >> a >> b; if (a < 60&&b>=60 || a>=60&&b<60) { cout << "1"; } eise cout<<"0";

              return 0;
              

              }

              • -1
                @ 2026-8-4 15:54:47

                #include <bits/stdc++.h> using namespace std;

                int main() { int a, b; cin >> a >> b ;

                if (a < 60 && b > 60 || a > 60 && b < 60) {
                	cout <<  "yes";
                
                } else {
                	cout << "no";
                }
                
                
                return 0;
                

                }

                • -1
                  @ 2026-8-4 15:49:20

                  #include <bits/stdc++.h> using namespace std;

                  int main() { int a, b; cin >> a >> b ; if (a < 60 && b < 60) { cout << "no "; } else if (a > 60 && b > 60) { cout << "no"; } else if (a < 60 && b > 60) { cout << "yes"; } else if (a > 60 && b < 60) { cout << "yrs"; }

                  return 0;
                  

                  }

                  • 1

                  【例22.1】 有一门课不及格的学生

                  信息

                  ID
                  148
                  时间
                  1000ms
                  内存
                  64MiB
                  难度
                  5
                  标签
                  递交数
                  170
                  已通过
                  60
                  上传者