% Chris Smith, 999999999 % CSC104, Instructor: Songnian Zhou; TA: Miranda Leung % Assignment 1, PART 2 % a2part2.t % % % Note: It is assumed that only non-negative integer values will be % entered at the prompt for dollars. var dollars : int % dollar amount to be withdrawn put " ***** Welcome to ATM *****" put "" loop put "Please enter the amount of cash you want to withdraw: $" .. get dollars put "" exit when dollars = 0 put "Please pick up $", dollars put "" end loop put "Thank you for your business!"