Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
29539 | lnx | 判断是否为两位数 | C++ | Accepted | 0 MS | 256 KB | 159 | 2023-10-31 18:44:22 |
#include<iostream> using namespace std; int main() { int k; cin>>k; if(10<=k&&k<=99) { cout<<"1"; } else { cout<<"0"; } return 0; }