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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started