Advertisement
sanyakasarova

01. Easter Lunch

Jun 19th, 2021
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _2._Exam_Preparation
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int easterBread = int.Parse(Console.ReadLine());
  10. int numOfEggCartons = int.Parse(Console.ReadLine());
  11. int kgCookies = int.Parse(Console.ReadLine());
  12.  
  13. double expenses = 3.20 * easterBread + numOfEggCartons * 4.35 + kgCookies * 5.40;
  14. int numOfEggs = 12 * numOfEggCartons;
  15. expenses += numOfEggs * 0.15;
  16.  
  17. Console.WriteLine($"{expenses:f2}");
  18.  
  19. }
  20. }
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement