G Guest Sep 11, 2006 #1 I'm looking for an example of what a routine, either an If, Do or Dowhile etc., to make change for a dollar would look like. Thank you
I'm looking for an example of what a routine, either an If, Do or Dowhile etc., to make change for a dollar would look like. Thank you
J John Spencer Sep 11, 2006 #2 Amount = AmountIn -Int(AmountIn) (If the input is in dollars and cents - 1.59 then get rid of the whole dollars) Quarters (0 to 3) Amouint \ 25 Dimes (0 to 2) (Amount Mod 25) \ 10 Nickels (0 to 1) Amount - ((Amount\25)*25) - (((Amount Mod 25) \10) * 10) Pennies (0 to 4) Amount Mod 5
Amount = AmountIn -Int(AmountIn) (If the input is in dollars and cents - 1.59 then get rid of the whole dollars) Quarters (0 to 3) Amouint \ 25 Dimes (0 to 2) (Amount Mod 25) \ 10 Nickels (0 to 1) Amount - ((Amount\25)*25) - (((Amount Mod 25) \10) * 10) Pennies (0 to 4) Amount Mod 5