2 条题解

  • 1
    @ 2025-5-25 10:21:30

    #include<bits/stdc++.h> using namespace std; int main() { int a,b; cin >>a>>b; if(a>=10 || b>=20) { cout<<"1"; } else { cout<<"0"; } return 0; }

    • 0
      @ 2025-5-28 16:21:13

      #include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; if(a>10 or b>20){ cout<<1; } else{ cout<<0; } }

      • 1

      信息

      ID
      49
      时间
      1000ms
      内存
      256MiB
      难度
      4
      标签
      递交数
      159
      已通过
      73
      上传者