Jerry Weida wrote: > not sure if this counts as "logic" but here's how I'd do it: > > quarters = amount / 25 > amount = amount - quarters * 25 > dimes = amount / 10 > amount = amount - dimes * 10 > nickels = amount / 5 > amount = amount - nickels * 5 > pennies = amount Jerry... Yabbut -- the initial value for amount is $0.92 (: -- Morris Dovey West Des Moines, Iowa USA