How to create Simple ATM Machine in C++ Program||ATM Program deposit withdraw money in c++|Using CLI || C++ project with Source Code || MH Computer Academy(Muhammad Hashmi)
#include<iostream> #include<conio.h> using namespace std; int main() { //SubScribe to MH Computer Academy( https://www.youtube.com/watch?v=LdRHCa5gyUs&t=290s ) // Muhammad Hashmi double balance , deposit , withdraw; int option; balance=100; //default balance do{ cout<<"\n\t***************MENU***************"; cout<<"\n\t* *"; cout<<"\n\t* 1. Check Balance *"; cout<<"\n\t* 2. Deposit *"; cout<<"\n\t* 3. Withdraw *"; cout<<"\n\t* 4. Transfer *";...
Comments
Post a Comment