public class account
{
public class CheckingAccount
{
static double interestRate;
private double balance;
private int accountNumber;
private String name;
//Initalizes the object
public CheckingAccount ()
{
balance = 0;
accountNumber = 0;
name = " ";
}
Edited by Dogstopper: I fixed your code tags. In the future, please do this by yourself, as I don't have the time to fix it every time and placing code in the tags makes it much easier for us DICs to help.
Thanks
~Dogstopper.
This post has been edited by Dogstopper: 10 March 2010 - 05:25 PM

New Topic/Question
Reply




MultiQuote





|