Given an char variable last that has been initialized to a lowercase letter, write a loop that displays all possible combinations of two letters in the range ‘a’ through last.
LANGUAGE: C++
CHALLENGE:
Given an char variable last that has been initialized to a lowercase letter, write a loop that displays all possible combinations of two letters in the range ‘a’ through last. The combinations should be displayed in ascending alphabetical order:
For example, if last was initialized to ‘c’ the output should be aa
ab
ac
ba
bb
bc
ca
cb
cc
SOLUTION:
The Bad News: The content you are trying to access is only available to members.
The Good News: You too can be a member, simply Click Here.
Already a member? Log In Here
Posted in C++, Learn To Code