Advertisement
Spocoman

04. Car Number

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