| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 72649 | sh25_zhuwy | 判断是否为两位数 | C++ | Accepted | 0 MS | 252 KB | 120 | 2025-11-02 13:39:46 |
#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a; cout<<(a>=10&&a<=99); return 0; }