Advertisement
Spocoman

01. Unique PIN Codes

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