Computer Science, asked by mrperera, 8 months ago

write a program to print all perfect numbers between 1 100

Answers

Answered by bittumogatalareddy
0

Answer:

C program to display the perfect numbers in between 1 and 100. Perfect number is an Integer number. The Perfect number is equal to the sum of all its positive divisors excluding the number itself. For example: 6 is a Perfect number ( that is, 1 + 2 + 3 = 6 ), 24 is a Perfect number ( that is, 1 + 2 + 4 + 7 + 14 = 28 ).

Answered by sankarjitdutta1970
0

Explanation:

C program to display the perfect numbers in between 1 and 100. Perfect number is an Integer number. The Perfect number is equal to the sum of all its positive divisors excluding the number itself. For example: 6 is a Perfect number ( that is, 1 + 2 + 3 = 6 ), 24 is a Perfect number ( that is, 1 + 2 + 4 + 7 + 14 = 28 ).

Similar questions