| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 3523 | Zhang_Yixin | 判断是否为两位数 | C++ | Accepted | 0 MS | 248 KB | 198 | 2023-01-09 13:10:49 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if (n/10<10){ cout<<1<<endl; } else if(n/10>9){ cout<<0<<endl; } return 0; }