Spocoman

Grandpa Stavri

Nov 25th, 2021 (edited)
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.12 KB | None | 0 0
  1. using System;
  2.  
  3. namespace GrangpaStavri
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int days = int.Parse(Console.ReadLine());
  10.             double totalLiters = 0;
  11.             double averageGradus = 0;
  12.             for (int i = 0; i < days; i++)
  13.             {
  14.                 double currentLiters = double.Parse(Console.ReadLine());
  15.                 double currentGradus = double.Parse(Console.ReadLine());
  16.                 averageGradus += currentLiters * currentGradus;
  17.                 totalLiters += currentLiters;
  18.             }
  19.             averageGradus /= totalLiters;
  20.             Console.WriteLine($"Liter: { totalLiters:f2}");
  21.             Console.WriteLine($"Degrees: { averageGradus:f2}");
  22.  
  23.             if (averageGradus < 38)
  24.             {
  25.                 Console.WriteLine("Not good, you should baking!");
  26.             }
  27.             else if (averageGradus > 42)
  28.             {
  29.                 Console.WriteLine("Dilution with distilled water!");
  30.             }
  31.             else
  32.             {
  33.                 Console.WriteLine("Super!");
  34.             }
  35.         }
  36.     }
  37. }
Add Comment
Please, Sign In to add comment