COMP2396
Loading...
Searching...
No Matches
BankAccount.java
Go to the documentation of this file.
1public class BankAccount {
2 private int balance = 100;
3 public int getBalance() { return balance; }
4 public void withdraw(int amount) {
5 balance = balance - amount;
6 }
7}
void withdraw(int amount)
int getBalance()