Question
write this program in simple java launguge using arrays Write a program that uses four arrays in parallel to store information about clients in a
write this program in simple java launguge using arrays
Write a program that uses four arrays in parallel to store information about clients in a veterinary clinic. To save time with data entry, the clinic will have only five clients. Array of String that holds clients names. Array of int that holds clients ID numbers, Array of int that holds number of pets each client owns. Array of double that holds the outstanding balance of each client. 1) Write the one loop that allows the user to enter the data for each of the arrays. (be sure to use nextLine( ) to read in a full name). 2) Calculate and print the average number of pets. (The result is a double ie: 2.1). 3) Allow the user to enter a client id. Search the IDs array to locate the position of that client. If found, print that clients name, number of pets and outstanding balance. If ID is not found, print a message stating that ID was no found. 4) Find and print the name and outstanding balance of client who has the largest outstanding balance.
please list code
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started