I made a program that generates a multiplication table for the number that is inputted by the user:
#include <iostream>
#include <iomanip>
#include <string>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
    char userSelection;
    int numForTable;
    int col;
    int row;
    do
    {
        cout << "Please enter a number for your multiplication table: " << endl;
        cin >> numForTable;
        while (numForTable < 1 || numForTable > 10)
        {
            cout << "Please enter a number between 1 & 10." << endl;
            cin >> numForTable;
        }
        cout << "\n"
             << "MULTIPLICATION TABLE: " << numForTable << "'s" << endl
             << "\n"
             << "    " << 1;
        for (col = 2; col <= numForTable; ++col)
            cout << "    " << col;
            cout << endl;
            cout << "   ----|";
        for (col = 2; col <= numForTable; ++col)
            cout << "----|";
            cout << endl;
        for (col = 1; col <= numForTable; ++col)
        {
            cout << setw(2) << col << "|";
            for (row = 1; row <= numForTable; ++row)
                cout << setw(4) << col * row << "|";
                cout << endl;
                cout << " -|----";
            for (row = 2; row <= numForTable - 1; ++row)
                cout << "|----";
                cout << "|----|";
                cout << endl;
        }
    }
    while (userSelection != 'q');
    return 0;
}
It continuously asks the user to input a number until the program is closed, but I'm trying to make it so the program closes when the user inputs any alphabet letter followed by a message that says something like "Have a nice day"
 
     
     
     
    