Advertisement
Spocoman

Substitute

Feb 13th, 2022 (edited)
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.45 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Subtitude
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int a = int.Parse(Console.ReadLine());
  10.             int b = int.Parse(Console.ReadLine());
  11.             int c = int.Parse(Console.ReadLine());
  12.             int d = int.Parse(Console.ReadLine());
  13.             int counter = 0;
  14.  
  15.             for (int k = a; k < 9; k++)
  16.             {
  17.                 for (int l = 9; l >= b; l--)
  18.                 {
  19.                     for (int m = c; m < 9; m++)
  20.                     {
  21.                         for (int n = 9; n >= d; n--)
  22.                         {
  23.                             if (k % 2 == 0 && m % 2 == 0 && l % 2 == 1 && n % 2 == 1)
  24.                             {
  25.                                 if (k == m && l == n)
  26.                                 {
  27.                                     Console.WriteLine("Cannot change the same player.");
  28.                                 }
  29.                                 else
  30.                                 {
  31.                                     Console.WriteLine($"{ k}{ l} - { m}{ n}");
  32.  
  33.                                     if (++counter == 6)
  34.                                     {
  35.                                         Environment.Exit(0);
  36.                                     }
  37.                                 }
  38.                             }
  39.                         }
  40.                     }
  41.                 }
  42.             }
  43.         }
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement