Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2019
450
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. if (totalTicketPrice > 4000)
  2. {
  3. totalTicketPrice *= 0.75;
  4. }
  5. else if (totalTicketPrice > 2500)
  6. {
  7. totalTicketPrice *= 0.90;
  8. if (photoWithTheTrophy == 'Y')
  9. {
  10. totalTicketPrice += ticketsCount * 40;
  11. }
  12. }
  13. else if (photoWithTheTrophy == 'Y')
  14. {
  15. totalTicketPrice += ticketsCount * 40;
  16. }
  17.  
  18. Console.WriteLine($"{totalTicketPrice:F2}");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement