
Patrick B. answered 04/20/21
Math and computer tutor/teacher
using namespace std;
#include <iostream>
#include <ctype.h>
int main()
{
char startChar='Z';
char stopChar='A';
while (startChar>stopChar)
{
cout << "Input start letter :>";
cin >> startChar;
startChar = toupper(startChar);
cout << "Input stop character :>";
cin >> stopChar;
stopChar=toupper(stopChar);
}
for (char chLoop=startChar; chLoop<=stopChar; chLoop++)
{
cout <<chLoop;
}
}