Use C++ coding A “Perfect” number is a positive whole number that is the sum of its proper divisors (including 1 and excluding the number itself). For example, the proper divisors of 6 are 1, 2, 3 and 1 + 2 + 3 = 6. So, 6 is a perfect number. Similarly, 28 is also a perfect number. Write a program that displays first 5 perfect numbers. The program should be composed of at least two functions additional to main function, one that accepts a number and returns a Boolean true if the number is perfect and false otherwise. The other function should display all the proper divisors of the perfect number. SAMPLE RUN: Six is a perfect number  1+2+3=6 28 is a perfect number 1+2+4+7+14=28

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section6.4: A Case Study: Rectangular To Polar Coordinate Conversion
Problem 9E: (Numerical) Write a program that tests the effectiveness of the rand() library function. Start by...
icon
Related questions
Question

Use C++ coding
A “Perfect” number is a positive whole number that is the sum of its proper divisors
(including 1 and excluding the number itself). For example, the proper divisors of 6 are 1,
2, 3 and 1 + 2 + 3 = 6. So, 6 is a perfect number. Similarly, 28 is also a perfect number.
Write a program that displays first 5 perfect numbers. The program should be composed
of at least two functions additional to main function, one that accepts a number and
returns a Boolean true if the number is perfect and false otherwise. The other function
should display all the proper divisors of the perfect number.

SAMPLE RUN:

Six is a perfect number 
1+2+3=6

28 is a perfect number
1+2+4+7+14=28

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Types of Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr