Write a program that creates a class Account that stores a variable balance(double data type). The class has the following methods:
void startAccount(double amt)
void deposit(double amt)
double withdraw(double amt)
double getBalance()
Answers
Answered by
2
Explanation:
The class has the following methods: void startAccount(double amt) void deposit(double amt) double withdraw(double ...
Similar questions