Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
147324 | 黄子轩 | 判断平方数 | C++ | 解答错误 | 0 | 7 MS | 248 KB | 230 | 2024-05-18 14:39:04 |
#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; } }