Spocoman

01. Back To The Past

Nov 20th, 2021 (edited)
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.92 KB | None | 0 0
  1. using System;
  2.  
  3. namespace BackToThePast
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double money = double.Parse(Console.ReadLine());
  10.             int year = int.Parse(Console.ReadLine());
  11.             int ivanchoEge = 18;
  12.  
  13.             for (int i = 1800; i <= year; i++)
  14.             {
  15.                 if (i % 2 == 0)
  16.                 {
  17.                     money -= 12000;
  18.                 }
  19.                 else
  20.                 {
  21.                     money -= 12000 + 50 * ivanchoEge;
  22.                 }
  23.                 ivanchoEge++;
  24.             }
  25.             if (money >= 0)
  26.             {
  27.                 Console.WriteLine($"Yes! He will live a carefree life and will have { money:f2} dollars left.");
  28.             }
  29.             else
  30.             {
  31.                 Console.WriteLine($"He will need { Math.Abs(money):f2} dollars to survive.");
  32.             }
  33.         }
  34.     }
  35. }
  36.  
Add Comment
Please, Sign In to add comment