Advertisement
vencinachev

Exam05

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