I'm tryin to get my code to convert my user input to upper case, while removing any extra stuff they might put in after the 'y' in 'yes.' I'm also trying to get my loop to keep appearing until they say their data they've entered is correct.
int main ()
// intitalizing statements
{
int assignment_1 = 00;
int assignment_2 = 00;
int assignment_3 = 00;
int assignment_4 = 00;
int assignment_5 = 00;
char response = 'i';
// Prompt user for scores from assignments
do
{
cout << "Hello, please enter your scores for assignments 1-5, "
<< "including a space between scores.(1-100 digits)" << endl;