witchway915

Untitled

Sep 5th, 2014
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class AccountTest
  4. {
  5.  
  6. public static void main( String[] args )
  7. {
  8. Account account1 = new Account( 50.00 );
  9.  
  10. Scanner input = new Scanner( System.in );
  11. double withdrawlAmount;
  12.  
  13. System.out.printf( "account1 balance: $%.2f\n",
  14. account1.getBalance() );
  15.  
  16. System.out.print( "Enter withdrawl amount for account1: " );
  17. withdrawlAmount = input.nextDouble();
  18. System.out.printf( "\nremoving %.2f from account1 balance\n\n",
  19. withdrawlAmount );
  20. account1.debit( withdrawlAmount );
  21.  
  22.  
  23. System.out.printf( "account1 balance: $%.2f\n",
  24. account1.getBalance() );
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment