Can any one help me with this exercise . . ! I did not understnd it . ?
A number is called a proper divisor of N if M < N and M divides N. A positive integer is called perfect if it is the sum of its positive proper divisors. For example, the positive proper divisors of 28 are 1, 2, 4, 7, and 14 and 1+2+4+7+14=28. Therefore, 28 is perfect. Write a program to display the first 4 perfect integer ..
you did not understand?
It gives a good example.
I think the first perfect integer is 6 because positive proper divisors are 1 2 3 and 1+2+3 = 6.
12 is not perfect cause 1+2+3+4+6 = 16 > 12
I even calculated the numbers from 1 to 20 in my mind, and found none.
You got it?