Programming Problem 1 in Chapter 7 asked you to write a program that takes a string as input and then outputs the corresponding words in the International Civil Aviation Organization (ICAO) alphabet that would be used to spell it out phonetically. For that program, you should have used a large Switch statement. Rewrite that program using an array of strings to hold the words of the alphabet, and index the array by the positions of the letters of the alphabet. By using an index with semantic content, you can avoid the need for the Switch statement. Be sure that you don’t try to index into the array using nonalphabetic characters, as that will result in an out-of-bounds access. For ease of reference, the ICAO alphabet is repeated here:
Be sure to use proper formatting and appropriate comments in your code. Provide appropriate prompts to the user. The output should be labeled clearly and formatted neatly.
REF PRB:
Programming Problem 3 in Chapter 5 asked you to write a program that takes a letter as input and outputs the corresponding word in the International Civil Aviation Organization Alphabet. Extend the program so that it inputs a string and outputs the series of ICAO words that would be used to spell it out. For example:
Write the program so that it determines the word corresponding to a specified letter using a Switch statement instead of an If structure. For ease of reference, the ICAO alphabet is repeated here:
Be sure to use proper formatting and appropriate comments in your code. Provide appropriate prompts to the user. The output should be clearly labeled and neatly formatted.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.