Your former example is very different from your latter, and that holds true for the corresponding solutions.
However, by and large, you probably need to:
step 1: load the input integers into a container, let’s say a std::vector<int> or a std::queue<int> (or even a C-style array).
Step 2: output the corresponding values from a matching table.
About the last point: it seems that for every number you get, you need to output a letter from the English alphabet. In that case, you don’t need a table of matches.
Just use the ASCII table, where A is 65, B is 66 and so on.
I think you want to work this out by your own, don’t you?
Happy coding!
P.s.
This doesn’t seem that far from what you were struggling with in February:
http://www.cplusplus.com/forum/beginner/249997/
Wouldn’t it be simpler to explain us what are you trying to achieve?
And please, use code tags:
http://www.cplusplus.com/articles/jEywvCM9/