| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 80689 | sh25_zhangyy | 判断是否为两位数 | C++ | Accepted | 0 MS | 244 KB | 200 | 2026-01-04 15:27:32 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(10<=n<=99){ cout<<"1"; } else{ cout<<"0"; } return 0; }