Advertisement
marto9119

Untitled

May 27th, 2023
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.34 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace _01._Guinea_Pig
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             double food = 1000 * double.Parse(Console.ReadLine());
  10.             double hay = 1000 * double.Parse(Console.ReadLine());
  11.             double cover = 1000 * double.Parse(Console.ReadLine());
  12.             double weight = 1000 * double.Parse(Console.ReadLine());
  13.             bool isHaveAll = true;
  14.  
  15.             weight /= 3;
  16.  
  17.             for (int i = 1; i <= 30; i++)
  18.             {
  19.                 food -= 300;
  20.  
  21.                 if (i % 2 == 0)
  22.                 {
  23.                     hay -= food * 0.05;
  24.                 }
  25.  
  26.                 if (i % 3 == 0)
  27.                 {
  28.                     cover -= weight;
  29.                 }
  30.  
  31.                 if (cover <= 0 || hay <= 0 || food <= 0)
  32.                 {
  33.                     isHaveAll = false;
  34.                     break;
  35.                 }
  36.             }
  37.  
  38.             food /= 1000;
  39.             hay /= 1000;
  40.             cover /= 1000;
  41.  
  42.             if (isHaveAll)
  43.             {
  44.                 Console.WriteLine($"Everything is fine! Puppy is happy! Food: {food:f2}, Hay: {hay:f2}, Cover: {cover:f2}.");
  45.             }
  46.             if (!isHaveAll)
  47.             {
  48.                 Console.WriteLine("Merry must go to the pet store!");
  49.             }
  50.         }
  51.     }
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement