Assignment 1_ISYS350_Summer2021 1. Sales Tax Write a program that will ask the user to enter the amount of a purchase. The program should then compute the state and county sales tax. Assume the state...

1 answer below »
Assignment attached


Assignment 1_ISYS350_Summer2021 1. Sales Tax Write a program that will ask the user to enter the amount of a purchase. The program should then compute the state and county sales tax. Assume the state tax is 8 percent and county tax is 3.5 percent. The program should display the amount of the purchase, the state sales tax and the county sales tax, total sales tax, and the total of the sale (which is the sum of the amount purchase plus total sales tax). 2. Celsius to Fahrenheit Temperature Converter Write a program that converts Celsius temperatures to Fahrenheit temperatures. The formula is as follows: F = (9/5)*C +32 The program should ask the user to enter a temperature in Celsius, then display the temperature converted to Fahrenheit. 3. Book Club Points Serendipity Booksellers has a book club that awards points to its customers based on the number of books purchased each month. The points are awarded as follows: • If a customer purchases 0 books, he or she earns 0 points. • If a customer purchases 1 book, he or she earns 6 points. • If a customer purchases 2 books, he or she earns 16 points. • If a customer purchases 3 books, he or she earns 32 points. • If a customer purchases 4 or more books, he or she earns 60 points. Write a program that asks the user to enter the number of books that he or she has purchased this month and displays the number of points awarded.
Answered Same DayJul 15, 2021

Answer To: Assignment 1_ISYS350_Summer2021 1. Sales Tax Write a program that will ask the user to enter the...

Kshitij answered on Jul 15 2021
140 Votes
pyhton/one.py
purchaseAmount=int(input())
stateTax=(purchaseAmount*8)/100
countryTax=(purchaseAmo
unt*3.5)/100
print(...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here