Use the STL string class in C++ for problems below involving strings. Do not use C style strings. Section One
Using C++ write a program given a hex string and parity type output the resulting Hamming parity string. Input a hex string from the keyboard followed by the word EVEN or ODD to indicate the parity separated by a space. Assume the hex string will produce no more than 128 bits and all input will be valid. Output to the screen the resulting Hamming parity value for the given hex string. Finally, ask the user if he/she wishes to run the program again (check case). Refer to the sample output below.
Sample Run:
Enter a hex string and parity type: ABC ODD
Hamming ODD parity string of ABC: 11101
Run again (Y/N): y
Enter a hex string and parity type: F EVEN
Hamming EVEN parity string of F: 111
Run again (Y/N): N