Advertisement
Guest User

Untitled

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