Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147355 | 吴悠 | 判断平方数 | C++ | 通过 | 100 | 2 MS | 248 KB | 301 | 2024-05-18 14:48:46 |
#include<iostream> #include<cmath> using namespace std; bool judge(int n){ int t=sqrt(n); if(t*t==n){ return true; } else return false; } int main(){ int n; while(cin>>n){ if(judge(n)==true){ cout<<1<<endl; } else cout<<0<<endl; } return 0; }