Q)
(chatquestion)...4. A perfect square is an integer which is the square of another integer.
For example, 4,9,16. are perfect squares. Design a class perfect with the following description:
Class Name
Data Members/instance variables
Perfect
stores an integer number
Member Function
Perfect()
Perfect(int)
Void perfect_sq()
default constructors
parameterized constructor to assign a value to 'n'
to display the first 5 prefect squares larger than 'n' (if n=15, the next 3
perfect squares are 16,25,36)
Void sum_of()
to display all combinations of consecutives integers whose sum is equal to
n. (the number n = 15 can be expressed as
12345
456
78
Specify a class Prefect giving details of the constrcutors(), void perfect_sq(), and void sum_of(). Also define the main function
to create an object and call methods accordingly to enable the task.
1 Answer
...