PROBLEM 2, JAVA Programming

Assignment Help:
#The objective is to implement a menu-based system for Bank Accounts in order to simulate a very simple banking system. Many structures have to be declared to manage bank accounts. An account contains the information about a customer name; his/her account number; current balance and address.
The system should be capable of adding new customers, accepting deposits, handling withdrawals, and displaying data such as customer name, address, account number and balance in dollars.
We may use four parallel arrays. The first array (accountsArray) is for holding the account numbers (each account is of type integer). The second array (namesArray) is needed to hold the customer names. The third (addressesArray) is for customer addresses. And the fourth (balancesArray) is for balances (each balance is of type Real). If a customer has an account in this bank, accountsArray[i] is the account number of this customer, namesArray[i] is the name of the same customer, addressesArray[i] is the address of the same customer, and balancesArray[i] is the balance of the same customer’s account.
Assume that the bank’s strategy is to have at maximum 1000 customers. You can start filling partially the arrays by initializing with 10 customers’ data of your choice.
Implement your system to perform the following tasks:
Design the MENU described below:
ROCKING BANKING SYSTEM
———————————
1. Add a new customer
2. Add from file
3. Withdraw funds
4. Deposit funds
5. Show Balance
6. Save to file
7. Display All Customers
0. Exit
Enter your choice ?

The menu above is redisplayed after the completion of every task based on the item selected unless the item 0 is selected.
When selected,
• Menu Item 1
Prompts the user as follows: (Each item below is read before the next prompt)
Please enter the following Items
Customer Account Number (read input)
Customer Name (read input)
Customer Address (read input)
Initial Funds (read input)
Use the account number entered to assure that the account does not already exists in the array. If not, then add the new data to the appropriate arrays. If the account number already exists then display an appropriate error message.
• Menu Item 2
Add new customers from a predefined file “client.txt”.
• Menu Item 3
Prompts the user as follows: (Each item below is read before the next prompt)
Please enter the following Items
Customer Account Number (read input)
Withdraw Amount (read input)
Use the account number to verify that the account exists in the account array. If not, display an appropriate message. If the account exists, perform the withdrawal transaction and update the account. The transaction should check the account for the availability of funds. If sufficient funds are available complete the transaction and display a message. Similarly, display a message if funds are less than the amount requested.
• Menu Item 4
Prompts the user as follows: (Each item below is read before the next prompt)
Please enter the following Items
Customer Account Number (read input)
Deposit Amount (read input)
Use the account number to verify that the account exists in the account array. If not, display an appropriate message. If the account exists, perform the deposit transaction, update the account, and display an appropriate message.
• Menu Item 5
Prompts the user as follows: (Each item below is read before the next prompt)
Please enter the following Items
Customer Account Number (read input)
Use the account number to verify that the account exists in the account array. If not, display an appropriate message. If the account exists, the system should display the account details. Below is an example about the layout of the displayed details on the screen:
Account Number: 10
Customer Name: James Dean
Address: Kiulap
Current Balance $ 8171.98
• Menu Item 6
Save the content of the array in the file “client.txt”.
• Menu Item 7
Display the Bank Customers Details as a report.
• Menu Item 0

Related Discussions:- PROBLEM 2

Array, public class Tester { static void test(int[] a) { int[] b = new in...

public class Tester { static void test(int[] a) { int[] b = new int[2]; a = b; System.out.print(b.length); System.out.print(a.length); } public static void main(String[] arg

Convert US Dollars to Canadian Dollars, How to write a program that convert...

How to write a program that converts US dollars into Canadian dollars.The program let the user enter an amount in US dollars and display it equivalent value in Canadian dollars whe

Java program to calculate the commercial value of the stamps, You are asked...

You are asked to write a Java program to calculate the commercial value of the stamps owned by a philatelist. Each philatelist has a name and a collection of stamps. The stamps can

Define in detail the building of webpage, Question 1 Describe the browser ...

Question 1 Describe the browser components and its features Question 2 Define in detail the building of webpage Question 3 How to use forms? Describe with an example

Polymorphism, Polymorphism - defines the ability of a single variable of ...

Polymorphism - defines the ability of a single variable of a provided type to be used to reference objects of different types, and automatically call the method that is specific

Program to find prime number from linked list, For this assignment you are ...

For this assignment you are provided with a class called LNode which can be used as a list node for a linked list of ints. You are also provided with an abstract class called LList

Explain some advantages of java, Platform independence is the key feature o...

Platform independence is the key feature of Java during runtime. Syntax of java is same to the popular object oriented languages such as C and C++. Java program can eliminate most

Services given by an EJB container, 1. Lifecycle Management : Individua...

1. Lifecycle Management : Individual enterprise beans do not accept to explicitly manage process allocation, object activation, thread management, or object destruction. The EJ

Methods in java, public class Foothill {    public static void main(String[...

public class Foothill {    public static void main(String[] args)    {       Client person_1 = new Client("Bruce Ruprecht", 16000, 10);       Writer writer_1 = new Writer("Adam Buf

Give an example for passing arguments to methods, Give an example for Passi...

Give an example for Passing Arguments to Methods ? class Car { String licensePlate = ""; // e.g. "New York 543 A23" double speed = 0.0; // in kilometers per h

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd