// Find the First N Perfect Numbers // A Perfect Number is a Number that is the Sum of All Divisors // Less Than Itself #include int SumOfDivisors(int); void main() {int PerfectsToFind,PerfectsFound=0,NumberBeingTested; cout << "How Many Perfects To Find? >"; cin >> PerfectsToFind; for (NumberBeingTested=2;PerfectsFound