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
int main() { //YOUR_CODE HERE }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
