Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
20791 LeoWang 判断是否为两位数 C++ 通过 0 MS 240 KB 202 2023-06-20 08:46:17

Tests(1/1):


#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; }


测评信息: