Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
64154 | 王一涵(吃土豆长大的马铃薯) | 判断是否为两位数 | C++ | Accepted | 0 MS | 248 KB | 198 | 2025-04-16 17:12:23 |
#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; }