Question: C++. An integer number is said to be a perfect number if the sum of its factors, including 1 (but not the number itself), is
C++. An integer number is said to be a perfect number if the sum of its factors, including 1 (but not the number itself), is equal to the number. For example: 6 is a perfect number, because 6 = 1 + 2 + 3.
Write a function PERFECT that determines whether parameter N 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.
This is a bonus question and it is worth 4 extra marks for this lab.This means you can get 14 out of 10 for this lab.
int IsFactor(int number, int divisor)
{
if (number% divisor == 0)
return 1;
else
return0;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
