Program to find Perfect Number Program in C++
What is a Perfect number: Perfect Number is a number in which sum of all its positive divisors excluding that number is equals to the number. For example: 6 Sum of divisors = 1+2+3 = 6 Here we will find perfect numbers between 1 and 500. Program explanation: Take first number as 1. … Read more