Program In C++ An Integer Number Is Said To Be A Perfect Number If Its Factors, Including 1 (But Not The Number Itself)
Question # 00794339
Posted By:
Updated on: 02/16/2021 07:30 AM Due on: 02/18/2021

An integer number is said to be a perfect number if its factors, including 1 (but not the number itself), sum to the number. For example, 6 is a perfect number because 6 =1 + 2 + 3. Write function 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. Print the factors of each perfect number to confirm that the number is indeed perfect. Challenge the power of your computer by testing numbers much larger than 1000.

-
Rating:
5/