Computer Science, asked by srivani19, 11 months ago

Problem
Submissions
Leaderboard
Discussions
Don is a playful kid who likes to fool around with people with his skill in shuffling the alphabetical order of
English Alphabets. To take up his challenge you have to listen to his sequence of alphabets. He will give you a
few digits to which you need to tell him the corressponding alphabets. Can you defeat Don ?
Contes
Input Format
Submis
Max sc
Difficul
1. The first line contains the sequence of 26 english alphabets.
2. The sbcond line contains the number of digits N to which the corressponding alphabets need to be printed.
Rate To
3. The next N line contains the digits.
More
Constraints
1 <= N <= 1000
Output Format
The N lines should contain the corressponding alphabets as per the sequence.
Sample Input 0
Z B C D E F G H I J K L M N O P Q R S T U V W X Y A
26
11
.
Ô
e
programming in c language​

Answers

Answered by sswaraj04
0

Answer:

i will just tell you the logic...

implement it on your own

Explanation:

first declare an array and store the alphabet series in it

now make a for loop that iterate N no. of times

each time take an input(let a) and print corresponding element in array with index a-1(array index start with 0)

it's easy one .... you can do it

Similar questions