PDA

Click to See Complete Forum and Search --> : Account and Test Account


jcates
Nov 10th, 2006, 11:35 AM
I started this Account and TestAccount. Could somebody help me finish. Here is my code for them.

Opening and Closing Accounts
File Account.java contains a definition for a simple bank account class with methods to withdraw, deposit, get the balance and account number, and return a String representation. Note that the constructor for this class creates a random account number. Save this class to your directory and study it to see how it works. Then write the following additional code:

Suppose the bank wants to keep track of how many accounts exist.

Declare a private static integer variable numAccounts to hold this value. Like all instance and static variables, it will be initialized (to 0, since it's an int) automatically.
Add code to the constructor to increment this variable every time an account is created.
Add a static method getNumAccounts that returns the total number of accounts. Think about why this method should be static * its information is not related to any particular account.
File TestAccounts1.java contains a simple program that creates the specified number of bank accounts then uses the getNumAccounts method to find how many accounts were created. Save it to your directory, then use it to test your modified Account class.


Add a method void close() to your Account class. This method should close the current account by appending "CLOSED" to the account name and setting the balance to 0. (The account number should remain unchanged.) Also decrement the total number of accounts.

Add a static method Account consolidate(Account acct1, Account acct2) to your Account class that creates a new account whose balance is the sum of the balances in acct1 and acct2 and closes acct1 and acct2. The new account should be returned. Two important rules of consolidation: · Only accounts with the same name can be consolidated. The new account gets the name on the old accounts but a new account number. · Two accounts with the same number cannot be consolidated. Otherwise this would be an easy way to double your money! Check these conditions before creating the new account. If either condition fails, do not create the new account or close the old ones; print a useful message and return null.


Write a test program that prompts for and reads in three names and creates an account with an initial balance of $100 for each. Print the three accounts, then close the first account and try to consolidate the second and third into a new account. Now print the accounts again, including the consolidated one if it was created.

//*******************************************************
// Account.java
//
// A bank account class with methods to deposit to, withdraw from,
// change the name on, and get a String representation
// of the account.
//*******************************************************
public class Account
{
private double balance;
private String name;
private long acctNum;
private static int numAccounts;
private double newAccount;

//----------------------------------------------
//Constructor -- initializes balance, owner, and account number
//----------------------------------------------
public Account(double initBal, String owner, long number)
{
balance = initBal;
name = owner;
acctNum = number;
numAccounts++;
}

//----------------------------------------------
// Checks to see if balance is sufficient for withdrawal.
// If so, decrements balance by amount; if not, prints message.
//----------------------------------------------
public void withdraw(double amount)
{
if (balance >= amount)
balance -= amount;
else
System.out.println("Insufficient funds");
}

//----------------------------------------------
// Adds deposit amount to balance.
//----------------------------------------------
public void deposit(double amount)
{
balance += amount;
}

//----------------------------------------------
// Returns balance.
//----------------------------------------------
public double getBalance()
{
return balance;
}


//----------------------------------------------
//Returns number of accounts created
//----------------------------------------------
public static int getNumAccounts()
{
return numAccounts;
}

//----------------------------------------------
// Returns name on the account
//----------------------------------------------
public String getName()
{
return name;
}

//----------------------------------------------
// Returns account number
//----------------------------------------------
public long getAcctNum()
{
return acctNum;
}

//----------------------------------------------
// Close the current account.
//----------------------------------------------
public void close()
{
if (balance == 0)
numAccounts--;
System.out.println("CLOSED");
}

//----------------------------------------------
// Consolidates two accounts into one account.
//----------------------------------------------
public static Account AccountConsolidate(Account acct1, Account acct2)
{
String name1 = acct1.getName();
String name2 = acct2.getName();
if(name1.equals(name2));
newAccount = acct1.getBalance() + acct2.getBalance();
newAccount = newAccount.getAcctNum();
Account consolidated = new Account(balance, name, newNumber);
return consolidated;
}

//----------------------------------------------
// Returns a string containing the name, account number, and balance.
//----------------------------------------------
public String toString()
{
return "Name:" + name +
"\nAccount Number: " + acctNum +
"\nBalance: " + balance;
}
}


//**********************************************
// TestAccounts2
// A simple program to test the methods of the
// Account class.
//**********************************************
import java.util.Scanner;

public class TestAccounts2
{
public static void main(String[] args)
{

Account acct1;
Account acct2;
Account acct3;

Scanner scan = new Scanner(System.in);
int num;
System.out.println("Enter the name for account 1: ");
int name1 = scan.nextInt();
System.out.println("Enter the name for account 2: ");
int name2 = scan.nextInt();
System.out.println("Enter the name for account 3: ");
int name3 = scan.nextInt();

for (int i=1; i>=num; i++)

acct1 = new Account(100, "name1", i);
System.out.println("\nCreated account " + name1);
System.out.println("Balance Available " + acct1.getBalance() + " account number: " + acct1.getAcctNum());
}
}

System_Error
Nov 10th, 2006, 07:52 PM
Which part are you needing help with?

CornedBee
Nov 11th, 2006, 07:46 AM
That, and please use code tags when posting code

Tmcclain
Nov 13th, 2006, 11:00 AM
I need help with Account Code and the TestAcccount Code. I have the instruction at the top and the Codes are after that.

CornedBee
Nov 13th, 2006, 11:26 AM
I need help with Account Code and the TestAcccount Code. I have the instruction at the top and the Codes are after that.
Well, duh!

What specific parts do you need help with? What is not as you expect it?


And use code tags!