Skip to content

FutureCoder2024/Calculator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

2 Commits
ย 
ย 

Repository files navigation

Calculator

#If the bill was $150.00, split between 5 people, with 12% tip.

#Each person should pay (150.00 / 5) * 1.12 = 33.6 #Format the result to 2 decimal places = 33.60

#Tip: There are 2 ways to round a number. You might have to do some Googling to solve this.๐Ÿ’ช

#Write your code below this line ๐Ÿ‘‡ print("Welcome to the tip calculator.") bill = float(input("What was the total bill? $")) tip = int(input("How much tip would you like to give? 15, 20, or 25? ")) people = int(input("How many people to split the bill?")) tip_as_percent = tip / 100 total_tip_amount = bill * tip_as_percent total_bill = bill +total_tip_amount bill_per_person = total_bill / people final_amount = round(bill_per_person, 2) print(f"Each person should pay: ${final_amount}")

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published