Advertisement
Spocoman

01. Guinea Pig

Nov 9th, 2023
491
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.01 KB | None | 0 0
  1. using System;
  2.  
  3. namespace GuineaPig
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double food = double.Parse(Console.ReadLine());
  10.             double hay = double.Parse(Console.ReadLine());
  11.             double cover = double.Parse(Console.ReadLine());
  12.             double weight = double.Parse(Console.ReadLine());
  13.  
  14.             for (int i = 1; i <= 30; i++)
  15.             {
  16.                 food -= 0.3;
  17.                 if (i % 2 == 0)
  18.                 {
  19.                     hay -= food * 0.05;
  20.                 }
  21.                 if (i % 3 == 0)
  22.                 {
  23.                     cover -= weight / 3;
  24.                 }
  25.             }
  26.  
  27.             if (food < 0 || hay < 0 || cover < 0)
  28.             {
  29.                 Console.Write("Merry must go to the pet store!");
  30.             }
  31.             else
  32.             {
  33.                 Console.WriteLine($"Everything is fine! Puppy is happy! Food: {food:f2}, Hay: {hay:f2}, Cover: {cover:f2}.");
  34.             }
  35.         }
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement