Question: Write a method called countCoins that accepts a Scanner representing an input file whose data is a series of pairs of tokens, where each pair

Write a method called countCoins that accepts a Scanner representing an input file whose data is a series of pairs of tokens, where each pair begins with an integer and is followed by the type of coin, which will be “pennies” (1 cent each), “nickels” (5 cents each), “dimes” (10 cents each), or “quarters” (25 cents each), caseinsensitively. Add up the cash values of all the coins and print the total money. For example, if the input file contains the following text:

3 pennies 2 quarters 1 Pennies 23 NiCkeLs 4 DIMES

For the input above, your method should produce the following output:

Total money: $2.09

Step by Step Solution

3.35 Rating (155 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

count up money as a double of dollarscents use printf at end public static void c... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Building Java Programs A Back to Basics Approach Questions!