/java-atm-project

This is an atm java project from codecademy

# java-atm-project
// This is an atm java project from codecademy 

public class ATM {
  
  public static int totalMoney = 0;
  public static int numATMs = 0;

  public int money;
  
  public ATM (int inputMoney) {
    this.money = inputMoney;
    numATMs = numATMs + 1;
    totalMoney = inputMoney + totalMoney;
 }
 
 
  public void withdrawMoney(int amountToWithdraw) {
    if (amountToWithdraw <= this.money) {
      this.money -= amountToWithdraw;
      totalMoney = totalMoney - amountToWithdraw;
    }
 
  public static void main(String[] args) {

    System.out.println("Total number of ATMs: " + ATM.numATMs); 
    ATM firstATM = new ATM(1000);
    ATM secondATM = new ATM(500);
    System.out.println("Total number of ATMs: " + ATM.numATMs);
    
    System.out.println("Total amount of money in all ATMs: " + ATM.totalMoney);  
    firstATM.withdrawMoney(500);
    secondATM.withdrawMoney(200);
    System.out.println("Total amount of money in all ATMs: " + ATM.totalMoney);
    
  } 
}

public void withdrawMoney(int amountToWithdraw) {
    if (amountToWithdraw <= this.money) {
      this.money -= amountToWithdraw;
      totalMoney -= amountToWithdraw;
    }
  }
  

public static void averageMoney() {
    System.out.println(totalMoney / numATMs);
  }
  
public static void main(String[] args) {

    System.out.println("Total number of ATMs: " + ATM.numATMs); 
    ATM firstATM = new ATM(1000);
    ATM secondATM = new ATM(500);
    System.out.println("Total number of ATMs: " + ATM.numATMs);
    
    System.out.println("Total amount of money in all ATMs: " + ATM.totalMoney);  
    firstATM.withdrawMoney(500);
    secondATM.withdrawMoney(200);
    System.out.println("Total amount of money in all ATMs: " + ATM.totalMoney); 
   
   }
   
}

public void withdrawMoney(int amountToWithdraw) {
    if (amountToWithdraw <= this.money) {
      this.money -= amountToWithdraw;
      totalMoney -= amountToWithdraw;
    }
  }
  
public static void averageMoney() {
    System.out.println(totalMoney / numATMs);
  }

public static void main(String[] args) {

    System.out.println("Total number of ATMs: " + ATM.numATMs); 
    ATM firstATM = new ATM(1000);
    ATM secondATM = new ATM(500);
    System.out.println("Total number of ATMs: " + ATM.numATMs);
    
    System.out.println("Total amount of money in all ATMs: " + ATM.totalMoney);  
    firstATM.withdrawMoney(500);
    secondATM.withdrawMoney(200);
    System.out.println("Total amount of money in all ATMs: " + ATM.totalMoney);
  
    ATM.averageMoney(); 

}