
Patrick B. answered 04/12/21
Math and computer tutor/teacher
using namespace std;
#include <iostream>
Go()
{
char chChar;
cout << "Please input the character :>";
cin >> chChar;
if (chChar=='y')
{
cout << "za" << endl;
}
else if (chChar=='z')
{
cout << "ab" << endl;
}
else
{
cout << char(chChar+1) << char(chChar+2) << endl;
}
}
int main()
{
Go();
}