Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
45729 | zhangyanshuo | 判断是否为两位数 | C++ | Accepted | 0 MS | 240 KB | 194 | 2024-04-19 18:35:49 |
#include<bits/stdc++.h> using namespace std; int main() { int a; cin>>a; if((a-100<=0&&10*a<100)) { cout<<0; return 0; } else { cout<<1; return 0; } return 0; }