Question: Write a Java application with a class name of MyBalances, to collect and output information on three user; 1- Wrie an application that reads data
Write a Java application with a class name of MyBalances, to collect and output information on three user;
1- Wrie an application that reads data for three users; including the first name and last name, followed by the balances on two separate accounts (Account Name and Balance). All six entries should be read by the application as six separate inputs.
2- Compute the average balane for each user. Compute the average balane for all three users.
3- Output the information for each individual user:
-output the first and last names saparated by acomma; last name first.
-output each user account name and balance.
- ouput each the user average balance
- output a rating based on the average balance
- if the average user balance is below $1000, output "awesome"
- if the average user balance is below $2500, output "Good Job"
- if the average user balane is above $2500, output "Help"
4- output the overall average balance for all users.
Note ; Do not use any loops or arrays.
use Scanner class to input values.
The output format should be like:
Users Account Balance Account Balance Average Status
------------- -------------- ----------- ---------- ------------ --------- ----------
Last, First
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
