import static java.lang.System.*;
import java.util.Scanner;
class UseAccount {
public static void main(String args[]){
Scanner myScanner=new Scanner(System.in);
Account myAccount=new Account();
Account yourAccount=new Account();
String myAccount.name=myScanner.next();
myAccount.address="222 Cybe Space Lane";
myAccount.balance=24.03;
yourAccount.name="Andy Booth";
yourAccount.address="19 Moor Drive";
yourAccount.balance=55.63;
myAccount.display();
out.print(" plus £");
out.print(myAccount.getInterest(5.00));
out.println(" interest ");
yourAccount.display();
double yourInterestRate=7.00;
out.print(" plus £");
double yourInterestAmount=yourAccount.getInterest(yourInterestRate);
out.print(yourInterestAmount);
out.println(" interest ");
}
}
Bookmarks