Ask Question
28 August, 01:34

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.

+3
Answers (1)
  1. 28 August, 02:56
    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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers