Please use Java and Please follow all directions. Several times I've posted this and the output has to include the names of items, quantity, and sale price. Item #03, Quantity: 2, Price: $12. Something like this but please have it in ascending order of quantity in stock. thank you! 1) Declare and initialize an array that keeps records of 10 items. Each item has a name, quantity in stock, and a sale price. Assign random values to numeric fields of each new item, and give sequential item names to each of them: "Item #01". "Item #02," "Item #03," ... Hint: You need to use the Random class library. 2) Traverse this array and print all the items. 3) Sort the values in this array in ascending order of quantity in stock and print all the items.
Please use Java and Please follow all directions. Several times I've posted this and the output has to include the names of items, quantity, and sale price. Item #03, Quantity: 2, Price: $12. Something like this but please have it in ascending order of quantity in stock. thank you!
1) Declare and initialize an array that keeps records of 10 items. Each item has a name, quantity in stock, and a sale price. Assign random values to numeric fields of each new item, and give sequential item names to each of them: "Item #01". "Item #02," "Item #03," ...
Hint: You need to use the Random class library.
2) Traverse this array and print all the items.
3) Sort the values in this array in ascending order of quantity in stock and print all the items.
Step by step
Solved in 2 steps