Can someone write up a code for these programs. I think it easy for a full fledge Java Programmer. =D
Here are the directions:
using java programming, you have been hired by The Bank to create a software program that their loan officers can use in-house to quickly input and view the specified data about their customers. Be sure you comment your code so that other programmers can edit when needed. Use good formatting techniques for readability.
The Bank needs the following programs created:
A.)
Bank account that can be created with a $0 balance or a given balance and is updated through deposits and withdrawals. A test should also be created to test the bank account class and its subclasses. Use the following parameters for the test class:
Deposit = $10,000
Make a transfer from the savings to checking = $2,000
Withdraw = $1,500
Withdrawal = $80
Transfer from saving to checking = $1,000
Withdrawal = $400
Add interest and deduct fees for end of month
Print out the result when you run the test class (i will do this part of course

)
B.) A checking account that has no interest, gives you ten transactions pre month, and charges a $2.00 transaction fee for each additional transactions. This account must keep track of the number of transactions to account for transaction fee. Also, be sure to include a fee defuction variable to deduct the monthly fees and to reset the tranaction counter every month.
C.)
A saving account earns interest at a fixed rate 5% interest that compounds monthly using the balance of the last day of the month and adds this amount to the account balance each month. This account must reject withdrawals for other than the full balance. Don't forget a method to calculate interest earned on the savings account.
D.)
Lastly, create a class as a conduit to a random-access file called bank.txt. This program will open the data file, get the number of accounts in the file, and close the data file in addition to reading and writing data. Print out the results when you run the class.
File names to use
SavingsAccount.java
Checkingaccount.java
Banktest.java
bankdata.java
bankdatatest.java
reader.java (reads data from the bank.txt file)
bank.txt
If it works i will rep you.
THANK

!!!!