Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
34359 | sunhuifeng | 判断是否为两位数 | C++ | Accepted | 0 MS | 244 KB | 173 | 2023-12-19 21:18:22 |
#include<iostream> using namespace std; int main(){ int a; cin>>a; if(a>10<99){ cout<<"1"; }else{ cout<<"0"; } return 0; }