Java file processing programming?
-
Write a complete program named "countCoins" that accepts one parameter (a Scanner attached to an input file) whose data represents a person's money grouped into stacks of coins. Your method should add up the cash values of all the coins and print the total money at the end. The input consists of a series of pairs of tokens, where each pair begins with an integer and is followed by the type of coin, which will be either "pennies" (1 cent each), "nickels" (5 cents each), "dimes" (10 cents each), or "quarters" (25 cents each), case-insensitively. A given coin might appear more than once on the same line. For example, if the input file contains the following single line of text: 3 pennies 2 quarters 1 pennies 3 nickels 4 dimes In this example: 3 pennies are worth 3 cents; 2 quarters are worth 50 cents; 1 penny is worth 1 cent; 3 nickels are worth 15 cents; 4 dimes are worth 40 cents. The total of these is 1 dollar and 9 cents. Therefore your method should print: Total money: $1.09 Here is a second example. Suppose the input file contains the following 4 lines of text. Notice the capitalization and spacing: Copy the 4 lines below and paste into a text file named money.txt in the DrJava working directory to test with the program code. 12 QUARTERS 1 Pennies 33 PeNnIeS 10 niCKELs Then your method should produce the following output: Total money: $3.84 You may assume that the file contains at least 1 pair of tokens. You may also assume that the input is valid; that the input has an even number of tokens, that every other token is an integer, and that the others are valid coin types. This is what I got so far... import java.util.*; import java.io.*; public class CountMoney { public static void main(String[] args) throws FileNotFoundException { Scanner fileIn = new Scanner(new File("money.txt")); countCoins(fileIn); // money = $3.84 } public static void countCoins(Scanner input) { double total = 0.0; while (input.hasNext()) { int count = input.nextInt(); String coin = input.next().toLowerCase(); if (coin.equals("nickels")) { count = count * 5; } else if (coin.equals("dimes")) { count = count * 10; } else if (coin.equals("quarters")) { count = count * 25; } total = total + (double) count / 100; } System.out.printf("Total money: $%.2f\n", total); } // count up money as a total number of cents; use / and % at end public static void countCoins(Scanner input) { int totalCents = 0; while (input.hasNext()) { int count = input.nextInt(); String coin = input.next().toLowerCase(); if (coin.equals("nickels")) { totalCents += count * 5; } else if (coin.equals("dimes")) { totalCents += count * 10; } else if (coin.equals("quarters")) { totalCents += count * 25; } } int dollars = totalCents / 100; int cents = totalCents % 100; System.out.print("Total money: $" + dollars + "."); if (cents < 10) { System.out.print("0"); } System.out.println(cents); } // implicit /100 in the multipliers public static void countCoins(Scanner input) { double total = 0.0; while (input.hasNext()) { double count = input.nextInt(); String coin = input.next().toLowerCase(); if (coin.equals("pennies")) { count *= 0.01; } else if (coin.equals("nickels")) { count *= 0.05; } else if (coin.equals("dimes")) { count *= 0.10; } else { count *= 0.25; } total += count; } System.out.printf("Total money: $%.2f\n", total); } } Can somebody fix this please? thanks
-
Answer:
here is your code http://pastebin.com/STLyKrvx say thanks if it satisfies you... :)
Unknown at Yahoo! Answers Visit the source
Related Q & A:
- How to upload file to google cloud storage using Java?Best solution by Stack Overflow
- How to start programming a game in java?Best solution by Game Development
- how to write to java file in the best way?Best solution by Stack Overflow
- Computer Science Java Programming?Best solution by AllExperts
- Is java or visual basic a machine level, low level, high level or binary level programming language?Best solution by Quora
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.