0
Write a program that print the state of the US when entered its abbreviation. The program must accept only a string values?
3 ответов
+ 4
If you make a start, others can help you with any difficulties.
+ 3
put the language of your choice in the tag. also let us see your attempt.
if you're looking for a tip. try Map the State name with its abbreviation as the key.
if you hope for someone to write the program for you, good luck with that.
+ 3
You can try using an array of objects (dictionaries in Python) to store both the states and the translations, then loop through this to find each translation based on the state input, would be one approach...