Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
40135 刁泓烨 【基础题】整数判断 C++ Accepted 1 MS 272 KB 157 2022-10-12 21:27:07

Tests(4/4):


Code:

#include<iostream> #include<stdio.h> using namespace std; int main(){ double a; cin>>a; if(a>1 and a<100){ cout<<"yes"; } return 0; }