Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147455 | dadsafdfe | 判断平方数 | C++ | 通过 | 100 | 0 MS | 252 KB | 246 | 2024-05-18 15:25:25 |
#include <iostream> #include <cmath> using namespace std; void f(int x){ int jj; jj=int(sqrt(x))*int(sqrt(x)); if(jj==x){ cout<<1<<endl; } else cout<<0<<endl; } int main(){ int x; while(cin>>x){ f(x); } return 0; }