Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. var credit = 0;
  2. function main_menu(){ //the main menu of the vending machine
  3. console.log('#-*-*-*-*-*-*-*-*-*-#');
  4. console.log(' Main Menu');
  5. console.log('|-*-*-*-*-*-*-*-*-*-|');
  6. console.log(' Credit'+ credit);
  7. console.log('#-*-*-*-*-*-*-*-*-*-#');
  8.  
  9. for (var idx = 0; idx < options.length; idx++) {
  10. console.log(idx + ': ' + options[idx]);
  11. }
  12.  
  13. var choice = readline.question('Choice: ');
  14. if(choice == 0){
  15. console.log('You chose option ' + choice);
  16. products_menu();
  17. }
  18. if(choice == 1){
  19. add_credit();
  20. }
  21. if(choice == 2){
  22. refund();
  23. }
  24.  
  25.  
  26. }
  27. function add_credit(){
  28. var add = readline.question('How much credit would you like to add?: ');
  29. credit += add_credit;
  30. console.log('You added ' + add);
  31. main_menu();
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement