Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147431 | 古浩圳bylz | 判断平方数 | C++ | 编译错误 | 0 | 0 MS | 0 KB | 229 | 2024-05-18 15:14:29 |
#include<iostream> using namespace std; void mathsqrt(int n) int main(){ int x; while(cin>>x){ mathsqrt(x); } return 0; } void mathsqrt(int n){ for(int i=1;n>0;i+=2){ n-=i; cout<<(n==0?1:0)<<endl; }