Ask Question
3 April, 15:44

In this scenario, two friends are eating dinner at a restaurant. The bill comes in the amount of 47.28 dollars. The friends decide to split the bill evenly between them, after adding 15% tip for the service. Calculate the tip, the total amount to pay, and each friend's share, then output a message saying "Each person needs to pay: " followed by the resulting number.

+1
Answers (1)
  1. 3 April, 16:00
    0
    bill = 47.28

    tip = bill *.15

    total = bill + tip

    share = total

    print ("Each person needs to pay: "+str (share))
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “In this scenario, two friends are eating dinner at a restaurant. The bill comes in the amount of 47.28 dollars. The friends decide to split ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers