提交时间:2024-05-18 15:21:40
运行 ID: 147444
#include<bits/stdc++.h> using namespace std; void f(int x){ int a; a=int(sqrt(x))*int(sqrt(x)); if(a==x) cout<<1<<endl; else cout<<0<<endl; } int main(){ int n; while(cin>>n){ f(n); } return 0; }