Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147457 | 黄本瀚 | 判断平方数 | C++ | 编译错误 | 0 | 0 MS | 0 KB | 226 | 2024-05-18 15:25:47 |
#include<bits/stdc++.h> using namespace std; void spuare(int x){ int ji; ji=int(sqrt(x))*int(sqrt(x)); if(ji==x)cout<<1<<endl; else cout<<0<<endl; } int main(){ int x; while(cin>>x) square(x); return 0; }