Advertisement
Spocoman

Cat Food

Jan 8th, 2022
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.17 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CatFood
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int num = int.Parse(Console.ReadLine());
  10.  
  11.             int firstGroup = 0;
  12.             int secondGroup = 0;
  13.             int thirdGroup = 0;
  14.             double totalFood = 0;
  15.  
  16.             for (int i = 0; i < num; i++)
  17.             {
  18.                 double food = double.Parse(Console.ReadLine());
  19.                 totalFood += food;
  20.                 if (food >= 100 && food < 200)
  21.                 {
  22.                     firstGroup++;
  23.                 }
  24.                 else if (food >= 200 && food < 300)
  25.                 {
  26.                     secondGroup++;
  27.                 }
  28.                 else if (food >= 300 && food < 400)
  29.                 {
  30.                     thirdGroup++;
  31.                 }
  32.             }
  33.             double price = totalFood * 0.01245;
  34.             Console.WriteLine($"Group 1: {firstGroup} cats.");
  35.             Console.WriteLine($"Group 2: {secondGroup} cats.");
  36.             Console.WriteLine($"Group 3: {thirdGroup} cats.");
  37.             Console.WriteLine($"Price for food per day: {price:F2} lv.");
  38.         }
  39.     }
  40. }
  41.  
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement