Blame view

P34091_en/S004-AC.cc 365 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <iostream>
#include <cmath>

using namespace std;

bool is_perfect(int n)
{
	int sum = 1;
	if(n > 5)
	{
		for(int i = 2; i < (int)(sqrt(n) + 1) ; i++)
		{
			if(!(n % i))
			{
				sum += (i + n/i);
			}
		}
		if(sum == n)
		{
			return true;
		}
	}
	return false;
}

int main()
{
/*
	int a;
	cin >> a;
	if(is_perfect(a))
	{
		return 0;
	}
	return -1;
*/
}