Advertisement
Spocoman

Number Generator

Sep 25th, 2023 (edited)
530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.49 KB | None | 0 0
  1. using System;
  2.  
  3. namespace NumberGenerator
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int m = int.Parse(Console.ReadLine());
  10.             int n = int.Parse(Console.ReadLine());
  11.             int l = int.Parse(Console.ReadLine());
  12.             int special = int.Parse(Console.ReadLine());
  13.             int control = int.Parse(Console.ReadLine());
  14.  
  15.             for (int i = m; i > 0; i--)
  16.             {
  17.                 for (int j = n; j > 0; j--)
  18.                 {
  19.                     for (int k = l; k > 0; k--)
  20.                     {
  21.                         int num = i * 100 + j * 10 + k;
  22.  
  23.                         if (num % 3 == 0)
  24.                         {
  25.                             special += 5;
  26.                         }
  27.                         else if (num % 5 == 0)
  28.                         {
  29.                             special -= 2;
  30.                         }
  31.                         else if (num % 2 == 0)
  32.                         {
  33.                             special *= 2;
  34.                         }
  35.  
  36.                         if (special >= control)
  37.                         {
  38.                             Console.WriteLine($"Yes! Control number was reached! Current special number is {special}.");
  39.                             Environment.Exit(0);
  40.                         }
  41.                     }
  42.                 }
  43.             }
  44.             Console.WriteLine($"No! {special} is the last reached special number.");
  45.         }
  46.     }
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement