题目描述
题目中等,注意输出格式即可。
样例
#include<iostream>
using namespace std;
int main()
{
int n;
cin>>n;
while(n--)
{
int x,res=0;
cin>>x;
for(int i=1;i*i<=x;i++)
{
if(x%i==0){
if(i<x) res+=i;
if(i!=x/i && x/i<x) res+=x/i;
}
}
if(res==x) cout<<x<<" is perfect"<<endl;
else cout<<x<<" is not perfect"<<endl;
}
return 0;
}