Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. payment1 = float(input("Enter the payment for the case:"))
  2. numberofstaff = int(input("Enter the number of staff:"))
  3. print("Phoenix Wright’s 25% share of the fee is worth: $" + str(round(payment1 * 0.25, 2)))
  4. print("The staff’s 75% share of the fee is worth : $" + str(round(payment1 * 0.75, 2)))
  5. print("Each staff member takes home: $" + str(round(payment1 * 0.75 / numberofstaff, 2)) + str(payment1))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement