Question: C++ program Read in a character (it will always be a lower case letter). Print out the two letters that come after it without any

C++ program

Read in a character (it will always be a lower case letter). Print out the two letters that come after it without any spaces. Once you go past 'z' you should wrap back to 'a'. Hint: You can add numbers to chars to shift them... You will need an if to check for "wraparound", but you should not have "if 'a' print 'bc'... if 'b' print 'cd'...".

This code should not be special in any way since it's a basic code. Simply use chars, in, cout, nextLetter, with no special characters or symbols.

Given code:

#include using namespace std;

int main() { //YOUR_CODE HERE }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!