In java write a program:A contact list is a place where you can store a specific contact with other associated information such as a phone number, email address, birthday, etc. Write a program that first takes as input an integer N that represents the number of word pairs in the list to follow. Word pairs consist of a name and a phone number (both strings). That list is followed by a name, and your program should output that name's phone number. Assume that the list will always contain less than 20 word pairs. Ex: If the input is:3 Joe 123-5432 Linda 983-4123 Frank 867-5309 Frankthe output is:867-5309Your program must define and call the following method. The return value of GetPhoneNumber is the phone number associated with the specific contact name. public static String GetPhoneNumber (String[] nameVec, String[] phoneNumberVec, String contactName, int arraySize) Hint: Use two arrays: One for the string names, and the other for the string phone numbers.
+5
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “In java write a program:A contact list is a place where you can store a specific contact with other associated information such as a phone ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » In java write a program:A contact list is a place where you can store a specific contact with other associated information such as a phone number, email address, birthday, etc.