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
1 Posted Topic
Re: import java.util.*; public class ChangeMakerJ { static Scanner console = new Scanner(System.in); static final double PRICE = 10.50; public static void main(String[] Args) { boolean anotherBill = true; double quantity, tprice, amtpaid, change1, chg$10, chg$5, chg$2, chg50, chg20, chg5, chg2, chg1; for(;anotherBill;) { System.out.println("Enter the quantity:"); quantity = console.nextInt(); System.out.printf("Total … |
The End.