Question: The language of this program needs to be C++ for visual studio express 2013 for windows. Create a CharConverter class that has these two pubic
The language of this program needs to be C++ for visual studio express 2013 for windows.
Create a CharConverter class that has these two pubic member functions.
-uppercase member function accepts a string of words from the user and returns a copy of it with all letters of the string converted from lowercase to uppercase. If the original letters are already uppercase or are not letters they are to be left alone.
-properWords member function accepts a string of words from the user and returns a copy of it with the first letter of each word converted to uppercase.
Write a simple program that uses the class and ask the user to input a string of words. The program should then call the properWords function and display the resulting string. Then the program should call the uppercase function and display the resulting string. Make sure the program loops to ask the user if they want to convert more strings uuntil the user chooses to quit.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
