Spocoman

08. Secret Door's Lock

Nov 22nd, 2021 (edited)
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.79 KB | None | 0 0
  1. using System;
  2.  
  3. namespace SecretDoorLock
  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.  
  13.             for (int i = 2; i <= a; i++)
  14.             {
  15.                 for (int j = 2; j <= b; j++)
  16.                 {
  17.                     for (int x = 2; x <= c; x++)
  18.                     {
  19.                         if (i % 2 == 0 && x % 2 == 0 &&
  20.                             (j == 2 || j == 3 || j == 5 || j == 7))
  21.                         {
  22.                             Console.WriteLine($"{i} {j} {x}");
  23.                         }
  24.                     }
  25.                 }
  26.             }    
  27.         }
  28.     }
  29. }
  30.  
Add Comment
Please, Sign In to add comment