Advertisement
Spocoman

04. Clever Lily

Nov 19th, 2021 (edited)
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.62 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CleverLily
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int age = int.Parse(Console.ReadLine());
  10.             double machine = double.Parse(Console.ReadLine());
  11.             double toyPrice = double.Parse(Console.ReadLine());
  12.             double sum = 0;
  13.             int toy = 0;
  14.             int birthday = 10;
  15.  
  16.             for (int i = 1; i <= age; i++)
  17.             {
  18.                 if (i % 2 == 0)
  19.                 {
  20.                     sum += birthday - 1;
  21.                     birthday += 10;
  22.                 }
  23.                 else
  24.                 {
  25.                     toy++;
  26.                 }
  27.             }
  28.                 sum += toy * toyPrice;
  29.  
  30.             if (sum >= machine)
  31.             {
  32.                 Console.WriteLine($"Yes! {sum - machine:f2}");
  33.             }
  34.             else
  35.             {
  36.                 Console.WriteLine($"No! {machine - sum:f2}");
  37.             }
  38.         }
  39.     }
  40. }
  41.  
  42. РЕШЕНИЕ С ТЕРНАРЕН ОПЕРАТОР:
  43.  
  44. using System;
  45.  
  46. namespace CleverLily
  47. {
  48.     class Program
  49.     {
  50.         static void Main()
  51.         {
  52.             int age = int.Parse(Console.ReadLine());
  53.             double machine = double.Parse(Console.ReadLine());
  54.             double toyPrice = double.Parse(Console.ReadLine());
  55.             int toy = 0, birthday = 10;
  56.            
  57.             for (int i = 1; i <= age; i++)
  58.             {
  59.                 _machine -= i % 2 == 0 ? 5 * i - 1 : toyPrice;
  60.             }
  61.  
  62.             Console.WriteLine($"{(machine > 0 ? "No" : "Yes")}! {Math.Abs(machine):f2}");
  63.         }
  64.     }
  65. }
  66.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement