Design a Java application that will store three different vehicle details for a local car dealership. The vehicle details must be stored in parallel arrays for the Vehicle Identification Number (VIN), Vehicle Manufacturer and Vehicle Price. Use the following data as an example when populating the arrays. VIN Manufacturer Vehicle Price 112367 AUDI R 180 000 212367 BMW R 170 000 312367 VOLVO R 210 000 Prompt the user with a menu system for searching or displaying the vehicles. The user must have the option to enter the numbers 1, 2, or zero (0) to exit the application. Make use of JOptionPanes for input and output. Create a loadArray() method that will store the vehicle details into the three parallel arrays. If the user enters a one (1) provide functionality for a vehicle search. Create a searchArray() method and write the code to enable the user to search for a specific vehicle. If the VIN is found in the array, display the vehicle details. 17, 18, 19 2019 © The Independent Institute of Education (Pty) Ltd 2019 Page 7 of 9 Sample Screenshot If the VIN that the user searched for does not exist in the array, show a message to indicate that the vehicle cannot be located.
Design a Java application that will store three different vehicle details for a local car dealership. The vehicle details must be stored in parallel arrays for the Vehicle Identification Number (VIN), Vehicle Manufacturer and Vehicle Price. Use the following data as an example when populating the arrays. VIN Manufacturer Vehicle Price 112367 AUDI R 180 000 212367 BMW R 170 000 312367 VOLVO R 210 000 Prompt the user with a menu system for searching or displaying the vehicles. The user must have the option to enter the numbers 1, 2, or zero (0) to exit the application. Make use of JOptionPanes for input and output. Create a loadArray() method that will store the vehicle details into the three parallel arrays. If the user enters a one (1) provide functionality for a vehicle search. Create a searchArray() method and write the code to enable the user to search for a specific vehicle. If the VIN is found in the array, display the vehicle details. 17, 18, 19 2019 © The Independent Institute of Education (Pty) Ltd 2019 Page 7 of 9 Sample Screenshot If the VIN that the user searched for does not exist in the array, show a message to indicate that the vehicle cannot be located.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps