Tuesday, July 14, 2009

How to solve this by using c++?

Write the definition of a class ContestResult containing:


An data member winner of type string , initialized to the empty string.


An data member secondPlace of type string , initialized to the empty string.


An data member thirdPlace of type string , initialized to the empty string.


A member function called setWinner that has one parameter, whose value it assigns to the data member winner .


A member function called setSecondPlace that has one parameter, whose value it assigns to the data member secondPlace .


A member function called setThirdPlace that has one parameter, whose value it assigns to the data member thirdPlace .


A member function called getWinner that has no parameters and that returns the value of the data member winner .


A member function called getSecondPlace that has no parameters and that returns the value of the data member secondPlace .


A member function called getThirdPlace that has no parameters and that returns the value of the data member thir

How to solve this by using c++?
If you are still stuck with your project assignment, may be you can contact a C++ expert at website like http://askexpert.info/
Reply:The correct answer should be:


class ContestResult


{


public:


void setWinner(string winner);


void setSecondPlace(string secondPlace);


void setThirdPlace(string thirdPlace);





string getWinner();


string getSecondPlace();


string getThirdPlace();





private:


string winner;


string secondPlace;


string thirdPlace;


};
Reply:You won't learn if we just give you the answer. Try it. Post what you have. I'm sure I and others wouldn't mind giving feedback and assistance if you at least make an attempt.


No comments:

Post a Comment