#include "ouratm.h" // class ATM is declared in the file: ouratm.h #include "ourstuff.h" // for round(amount, 2); int main() { ATM moneyMachine; moneyMachine.getNameAndPIN(); moneyMachine.message("Welcome " + moneyMachine.name()); moneyMachine.message("Is your PIN really " + moneyMachine.PIN() + "?"); moneyMachine.message("My name is LISA. How about a deposit?"); double amount; moneyMachine.getDeposit(amount); moneyMachine.message("LISA says, place your deposit in envelope"); amount = round(amount, 2); cout << "\nAmount: " << amount << endl; causeApause(); return 0; }