Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
6228 zhaohaoyu 判断是否为两位数 C++ 通过 1 MS 288 KB 211 2022-11-27 16:57:58

Tests(3/3):


#include<iostream> using namespace std; int main(){ int a=0; cin>>a; if (a>=10&&a<=99) { cout<<"1"<<endl; }else { cout<<"0"<<endl; } return 0; }


测评信息: