You are viewing a single comment's thread. Return to all comments →
meal_cost = int(input("enter the meal cost :")) tip_percent = int(input("enter the tip % :")) tax_percent = int(input("enter the tax % :")) meal_taxtips = (tip_percent/100) * meal_cost + (tax_percent/100) * meal_cost + meal_cost print(round(meal_taxtips))
Seems like cookies are disabled on this browser, please enable them to open this website
Day 2: Operators
You are viewing a single comment's thread. Return to all comments →
meal_cost = int(input("enter the meal cost :")) tip_percent = int(input("enter the tip % :")) tax_percent = int(input("enter the tax % :")) meal_taxtips = (tip_percent/100) * meal_cost + (tax_percent/100) * meal_cost + meal_cost print(round(meal_taxtips))