During a special sale at a store, a 10% discount is taken on purchases over $10.00. Write a program that asks for the amount of purchases, then calculates the discounted price. The purchase amount will be input in cents (as an integer):
Use integer arithmetic throughout the program.Enter amount of purchases: 2000 Discounted price: 1800
Bob's Discount Bolts charges the following prices:
Use constants for the unit cost of each item. In other words, declare something likeNumber of bolts: 12 Number of nuts: 8 Number of washers: 24 Check the Order Total cost: 108
final int boltPrice = 5;
and so on in your program.
Al's Last Chance Gas station sits on route 190 on the edge of Death Valley. There is no other gas station for 200 miles. You are to write a program to help drivers decide if they need gas. The program asks for:
Tank capacity: 12 Gage reading: 50 Miles per gallon: 30 Get Gas!
At the State Fair Pie Eating Contest all contestants in the heavyweight division must weigh within 30 pounds of 250 pounds. Write a program that asks for a contestant's weight and then says if the contestant is allowed in the contest.
Different packages of ground beef have different percentages of fat and different costs per pound. Write a program that asks the user for:
Assume that the two packages will not come out equal in value.Price per pound package A: 2.89 Percent lean package A: 85 Price per pound package B: 3.49 Percent lean package B: 93 Package A cost per pound of lean:3.4 Package B cost per pound of lean:3.752688 Package A is the best value
Write a program that asks a user for their birth year encoded as two digits (like "62") and for the current year, also encoded as two digits (like "99"). The program is to correctly write out the users age in years.
Year of Birth: 62 Current year: 99 Your age: 37 ----- another run of the program -------- Year of Birth: 62 Current year: 00 Your age: 38