fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void showMenu(){
  5. cout << "***********MENU***********" << "\n";
  6. cout<< "1. check balance" << "\n";
  7. cout<< "2. deposit" << "\n";
  8. cout<< "3. Withdraw" << "\n";
  9. cout<<"**********************************" << "\n";
  10. }
  11.  
  12. int main() {
  13. showMenu();
  14. return 0;
  15. }
Success #stdin #stdout 0s 5328KB
stdin
Standard input is empty
stdout
***********MENU***********
1. check balance
2. deposit
3. Withdraw
**********************************