Please use Pseudocode The Cashless Cafe only accepts credit
 Please use Pseudocode
Solution
String cardType
 num transAmount
 string PIN
 string signature
def store\'s checkout{
     INPUT cardType
     IF cardType = debit card
         THEN
             INPUT PIN from customer
     ELSE IF cardType = credit card
         THEN
             IF (transAmount >= $50)
                 THEN
                     INPUT signature from customer
             ELSE
                 do nothing  
 }

