提交时间:2024-05-18 14:39:04

运行 ID: 147324

#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; } }