Spocoman

10. Profit

Nov 22nd, 2021 (edited)
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.83 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Profit
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int oneBGN = int.Parse(Console.ReadLine());
  10.             int twoBGN = int.Parse(Console.ReadLine());
  11.             int fiveBGN = int.Parse(Console.ReadLine());
  12.             int sum = int.Parse(Console.ReadLine());
  13.  
  14.             for (int i = 0; i <= oneBGN; i++)
  15.             {
  16.                 for (int j = 0; j <= twoBGN; j++)
  17.                 {
  18.                     for (int k = 0; k <= fiveBGN; k++)
  19.                     {
  20.                         if (i * 1 + j * 2 + k * 5 == sum)
  21.                         {
  22.                             Console.WriteLine($"{i} * 1 lv. + {j} * 2 lv. + {k} * 5 lv. = {sum} lv.");
  23.                         }
  24.                     }
  25.                 }
  26.             }
  27.         }
  28.     }
  29. }
  30.  
Add Comment
Please, Sign In to add comment