4 条题解

  • 5
    @ 2026-5-30 9:58:32

    #include<bits/stdc++.h> using namespace std; int main(){ long long a; cin>>a; if(a>=10&&a<=100){ cout<<1; } else cout<<0; return 0; }

    • 1
      @ 2026-7-6 22:03:58

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

      int main() { int n; cin >> n; if (n >= 10 && n <= 99) { cout << 1; } else { cout << 0; } return 0; }

      • 1
        @ 2026-5-31 10:48:07

        #include <bits/stdc++.h>

        using namespace std;

        int main() { int n; cin >> n; if (n >= 10 && n <= 99) { cout << "1"; } else { cout << "0"; } }

        • 1
          @ 2026-5-30 10:31:37

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

          int main() { long long a; cin >> a; if (a >= 10 && a <= 100) { cout << 1; } else cout << 0; return 0; }

          • 1

          信息

          ID
          30939
          时间
          1000ms
          内存
          256MiB
          难度
          3
          标签
          (无)
          递交数
          92
          已通过
          51
          上传者