Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
33623 JWM918 【入门】判断是否为两位数 C++ 通过 0 MS 256 KB 147 2023-12-31 08:29:09

Tests(20/20):


#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; if(x>=10&&x<=99){ cout<<"1"; }else{ cout<<"0"; } }


测评信息: