Advertisement
Guest User

Untitled

a guest
Feb 28th, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. public Account (String CustomerName, double balance, double MonthlyInterest, double limit){
  2.         this.CustomerName=CustomerName;
  3.         this.balance=balance;
  4.         this.MonthlyInterest=MonthlyInterest;
  5.         this.limit=limit;
  6. }
  7.    
  8.     public Account (String CustomerName, double balance, double MonthlyInterest){
  9.         this.CustomerName=CustomerName;
  10.         this.balance=balance;
  11.         this.MonthlyInterest=MonthlyInterest;
  12.        
  13.         Account.Account(CustomerName, balance, MonthlyInterest, 0d);
  14.        
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement