Recent content by moodtl32

  1. M

    Finding remainder for one dollar bills in change

    FOUND THE ANSWER numOnes = amountToChange % 5;
  2. M

    Finding remainder for one dollar bills in change

    A cashier distributes change using the maximum number of five dollar bills, followed by one dollar bills. For example, 19 yields 3 fives and 4 ones. Write a single statement that assigns the number of 1 dollar bills to variable numOnes, given amountToChange. Hint: Use the % operator. #include...