A perfect number is an integer that is the sum of its positive proper  divisors (all divisors except itself). For example, 6 is a perfect number.  The divisors of 6 except itself are 1,2 and 3. The sum of the proper  divisors of 6 is 6. Thus 6 is a perfect number. You have to take integers  as input and continue taking input until the word “STOP” is given as input.  After taking the inputs you have to classify the integers as Perfect and  Imperfect and store it in a dictionary(Please see the output for better  understanding).

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 21PE
icon
Related questions
Question

Question: 1
A perfect number is an integer that is the sum of its positive proper 
divisors (all divisors except itself). For example, 6 is a perfect number. 
The divisors of 6 except itself are 1,2 and 3. The sum of the proper 
divisors of 6 is 6. Thus 6 is a perfect number. You have to take integers 
as input and continue taking input until the word “STOP” is given as input. 
After taking the inputs you have to classify the integers as Perfect and 
Imperfect and store it in a dictionary(Please see the output for better 
understanding).
[Note: You CANNOT use any built in functions EXCEPT input(),range(),print()]

Sample Input :
6
10
8
25
28
100
496
530
STOP

Sample Output:(No need to follow the output format. Just print the 
resultant dictionary.)
{
Perfect: [6,28,496],
Imperfect: [10,8,25,100,530]
}

Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Constants and Variables
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++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr