Spocoman

12. The song of the wheels

Nov 22nd, 2021 (edited)
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.09 KB | None | 0 0
  1. using System;
  2.  
  3. namespace TheSongOfTheWheels
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int number = int.Parse(Console.ReadLine());
  10.             string print = "No!";
  11.             int counter = 0;
  12.  
  13.             for (int a = 1; a <= 9; a++)
  14.             {
  15.                 for (int b = 1; b <= 9; b++)
  16.                 {
  17.                     for (int c = 1; c <= 9; c++)
  18.                     {
  19.                         for (int d = 1; d <= 9; d++)
  20.                         {
  21.                             if (a * b + c * d == number && a < b && c > d )
  22.                             {
  23.                                 Console.Write($"{a}{b}{c}{d} ");
  24.                                 counter++;
  25.                                 if (counter == 4)
  26.                                 {
  27.                                     print = $"Password: {a}{b}{c}{d}";
  28.                                 }
  29.                             }
  30.                         }
  31.                     }
  32.                 }
  33.             }
  34.             Console.WriteLine($"\n{print}");
  35.         }
  36.     }
  37. }
Add Comment
Please, Sign In to add comment