Account.java public class Account { protected Customer customer; protected double balance; public Account(Customer customer, double balance) { super(); this.customer = customer; this.balance = balance; } public double getBalance() { return balance; } public void deposit(double amount) { balance +=amount; System.out.println("Deposited:…
Manthan Jadhav
updated on 01 Sep 2023
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Manthan Jadhav (4)
Project 2
Account.java public class Account { protected Customer customer; protected double balance; public Account(Customer customer, double balance) { super(); this.customer = customer; this.balance = balance; } public double getBalance() { return balance; } public void deposit(double amount) { balance +=amount; System.out.println("Deposited:…
01 Sep 2023 03:18 PM IST
Project 1
..
23 Aug 2023 11:36 AM IST
Project 2 - Shopping cart application
17 Aug 2023 12:28 PM IST
Project 1 - Expense tracker
01 Aug 2023 11:51 AM IST