提交时间:2024-05-18 15:27:47

运行 ID: 147466

#include<bits/stdc++.h> using namespace std; int square(int n){ int x; x=int(sqrt(x))*int(sqrt(x)); if(x==n) return 1; else return 0; } int main(){ int x; while(cin>>x){ cout<<square(x)<<endl; } return 0; }