Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147474 | 刘子隽bylz | 判断平方数 | C++ | 解答错误 | 0 | 1 MS | 244 KB | 235 | 2024-05-18 15:29:35 |
#include<bits/stdc++.h> using namespace std; void square(int n){ int x; x=int(sqrt(x))*int(sqrt(x)); if(x==n) cout<<1<<endl; else cout<<0<<endl; } int main(){ int x; while(cin>>x){ square(x); } return 0; }