Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
147288 C班詹皓杰 判断平方数 C++ 通过 100 1 MS 248 KB 199 2024-05-18 14:30:38

Tests(4/4):


#include<iostream> #include<cmath> using namespace std; int main(){ int x; while(cin>>x){ if(sqrt(x) == int(sqrt(x))){ cout<<"1\n"; }else{ cout<<"0\n"; } } return 0; }


测评信息: