Write the definition of a class that has the following properties:
a. The name of the class is secretType .
b. The class secretType has four instance variables: name of type string, age and weight of type int , and height of type double.
c. The class secretType has the following member functions:
print— Outputs the data stored in the instance variables with the appropriate titles
setName— Function to set the name
setAge— Function to set the age
setWeight— Function to set the weight
setHeight —Function to set the height
getName— Value-returning function to return the name
getAge —Value-returning function to return the age
getWeight —Value-returning function to return the weight
getHeight —Value-returning function to return the height
Default constructor—Sets name to the empty string and age , weight , and height to 0
Constructor with parameter—Sets the values of the instance variables to the values specified by the user
d. Write the definition of the member functions of the class secretType as described in Part c.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.