Computer Science, asked by 16tume123mohansanjay, 1 year ago

Rohan wants a magic board, which displays a character for a corresponding number for his science exhibition. Help him to develop such application.

For example when the digits 65,66,67,68 are entered, the alphabet ABCD are to be displayed.

[Assume the number of inputs should be always 4 ]

please help me to solve this problem in java language

Answers

Answered by prakulwa
0

Answer:

I'm not writing code. I'm giving you the logic

Explanation:

Take two arrays, of same size. In first store numbers(66,67) etc and in second(A,B,C) respectively.

Now, you can manage Input and Output by Yourself,

When the numbers are entered, find them in first array, obtain their indexes, and find the elements in second array on those indexes. Should be done easily

Similar questions