Computer Science, asked by srijansingh2004aug, 6 months ago

Define a method named 'perfect' that determines if parameter number is a perfect number.
Use this function in a program that determines and prints all the perfect numbers between 1 and 1000.

Answers

Answered by bhoomika111141
0

Answer:

perfect number is a positive integer that is equal to the sum of its positive divisors, excluding the number itself. For instance, 6 has divisors 1, 2 and 3 (excluding itself), and 1 + 2 + 3 = 6, so 6 is a perfect number.

Illustration of the perfect number status of the number 6

Similar questions