Spocoman

03. Lucky Numbers

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