Advertisement
elena1234

DisneylandJourney

Oct 12th, 2020 (edited)
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.04 KB | None | 0 0
  1. using System;
  2.  
  3. namespace DisneylandJourney
  4. {
  5.     class MainClass
  6.     {
  7.         public static void Main(string[] args)
  8.         {
  9.             double costOfJourney = double.Parse(Console.ReadLine());
  10.             int month = int.Parse(Console.ReadLine());
  11.             double savedMoney = 0;
  12.  
  13.             for (int i = 1; i <=month; i++)
  14.             {
  15.                 if(i%2!=0 && i!=1)
  16.                 {
  17.                     savedMoney -= 0.16 * savedMoney;
  18.                 }
  19.  
  20.                 else if (i % 4 == 0)
  21.                 {
  22.                     savedMoney += 0.25 * savedMoney;
  23.                 }
  24.                 savedMoney += 0.25 * costOfJourney;
  25.             }
  26.  
  27.             if (savedMoney >= costOfJourney)
  28.             {
  29.             Console.WriteLine($"Bravo! You can go to Disneyland and you will have {savedMoney - costOfJourney:F2}lv. for souvenirs.");
  30.             }
  31.  
  32.             else
  33.             {
  34.                 Console.WriteLine($"Sorry. You need {costOfJourney-savedMoney:F2}lv. more.");
  35.             }
  36.         }
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement