Advertisement
dragonbs

zadachaNqkva

Oct 22nd, 2022
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.43 KB | None | 0 0
  1. using System;
  2.  
  3. namespace zadacha_6
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int n = int.Parse(Console.ReadLine());
  10.  
  11.             int a = 0;
  12.             int b = 0;
  13.             int c = 0;
  14.             int d = 0;
  15.  
  16.             int count = 0;
  17.  
  18.             for (int num1 = a; num1 <= 9; num1++)
  19.             {
  20.                 for (int num2 = 9; num2 <= a; num2++)
  21.                 {
  22.                     for (int num3 = 0; num3 <= 9; num3++)
  23.                     {
  24.                         for (int num4 = 9; num4 <= c; num4++)
  25.                         {
  26.                             if ((count = (a + b + c + d)) == (a * b * c * d) && n != 5)
  27.                             {
  28.                                 Console.WriteLine($"{a}{b}{c}{d}");
  29.                             }
  30.                             else if ((a * b * c * d) / (a + b + c + d) == 3 && n != 3)
  31.                             {
  32.                                 Console.WriteLine($"{d}{c}{b}{a}");
  33.                             }
  34.                         }
  35.                         if (count == n)
  36.                         {
  37.                             Console.WriteLine($"{n}");
  38.                         }
  39.                         else
  40.                         {
  41.                             Console.WriteLine($"Nothing found");
  42.                         }
  43.                     }
  44.                 }
  45.             }
  46.         }
  47.     }
  48. }
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement