Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.55K
~7K People Reached
Favorite Forums
Favorite Tags
java x 1

1 Posted Topic

Member Avatar for Kurosaki

import java.util.*; public class Cashier { public static void main(String[] args) { Scanner console = new Scanner(System.in); int amountDue,amountPaid; double pennies,dollars,nickels,dimes,quarters; System.out.print("The amount due: "); amountDue = console.nextInt(); System.out.print("The amount paid: "); amountPaid = console.nextInt(); System.out.print("Your change is: "); pennies = amountPaid-amountDue+50; dollars=pennies/100; pennies=pennies%100; quarters = pennies/25; pennies = pennies%25; …

Member Avatar for JamesCherrill
0
7K

The End.