Advertisement
dragonbs

zadacha 6

Oct 22nd, 2022
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.78 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _1zadacha
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int n1 = int.Parse(Console.ReadLine());
  10.             int n2 = int.Parse(Console.ReadLine());
  11.             int n3 = int.Parse(Console.ReadLine());
  12.  
  13.             for (int num1 = 2; num1 <= n1; num1+= 2)
  14.             {
  15.                 for (int num2 = 2; num2 <= n2; num2++)
  16.                 {
  17.                     for (int num3 = 2; num3 <= n3; num3+=2)
  18.                     {
  19.                         if (num2 == 2 || num2 == 3 || num2 == 5 || num2 == 7)
  20.                         {
  21.                             Console.WriteLine($"{num1} {num2} {num3}");
  22.                         }
  23.                     }
  24.                 }
  25.             }
  26.         }
  27.     }
  28. }
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement