Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
20792 | LeoWang | 判断是否为两位数 | C++ | Accepted | 0 MS | 248 KB | 202 | 2023-06-20 08:46:24 |
#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; }