in java Write a class phone that stores Name (String) and number of friends (String), Provide appropriate methods In the main program create an array of at least 10 string objects that hold people’s names and phone numbers. You may make up your own strings, or use the following: "Alejandra Cruz, 555-1223" "Joe Looney, 555-0097" "Geri Palmer, 555-8787" "Li Chen, 555-1212" "Holly Gaddis, 555-8878" "Sam Wiggins, 555-0998" "Bob Kain, 555-8712" "Tim Haynes, 555-7676" "Warren Gaddis, 555-9037" "Jean James, 555-4939" "Ron Palmer, 555-2783" The program should do following • Display whole phonebook • Number of all those friends name starting with ‘a’. • Name of friends with phone numbers starting with 455. • Number of all those friends name ending with ‘s’. • Number of friends having “palmer” in name. • Enter a name or partial name to search for in the array. Any entries in the array that match the string entered should be displayed. For example, if the user enters “Palmer” the program should display the following names from the list: Geri Palmer, 555-8787 Ron Palmer, 555-2783
in java Write a class phone that stores
Name (String) and number of friends (String),
Provide appropriate methods
In the main program create an array of at least 10 string objects that hold people’s names and phone numbers. You may make up your own strings, or use the following:
"Alejandra Cruz, 555-1223"
"Joe Looney, 555-0097"
"Geri Palmer, 555-8787"
"Li Chen, 555-1212"
"Holly Gaddis, 555-8878"
"Sam Wiggins, 555-0998"
"Bob Kain, 555-8712"
"Tim Haynes, 555-7676"
"Warren Gaddis, 555-9037"
"Jean James, 555-4939"
"Ron Palmer, 555-2783"
The program should do following
• Display whole phonebook
• Number of all those friends name starting with ‘a’.
• Name of friends with phone numbers starting with 455.
• Number of all those friends name ending with ‘s’.
• Number of friends having “palmer” in name.
• Enter a name or partial name to search for in the array. Any entries in the array that match the string entered should be displayed. For example, if the user enters “Palmer” the program should display the following names from the list:
Geri Palmer, 555-8787
Ron Palmer, 555-2783
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images