提交时间:2024-05-18 14:48:46

运行 ID: 147355

#include<iostream> #include<cmath> using namespace std; bool judge(int n){ int t=sqrt(n); if(t*t==n){ return true; } else return false; } int main(){ int n; while(cin>>n){ if(judge(n)==true){ cout<<1<<endl; } else cout<<0<<endl; } return 0; }