Advertisement
marto9119

Untitled

Feb 15th, 2023
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.38 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace _13._Prime_Pairs
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int firstStartCombination = int.Parse(Console.ReadLine());
  10.             int SecondStartCombination = int.Parse(Console.ReadLine());
  11.             int endFirstLoop = int.Parse(Console.ReadLine());
  12.             int endSecondLoop = int.Parse(Console.ReadLine());
  13.             bool firstLoop = true, secondLoop = true;
  14.             int endFLoop = firstStartCombination + endFirstLoop;
  15.             int endSLoop = SecondStartCombination + endSecondLoop;
  16.  
  17.             for (int i = firstStartCombination; i <= endFLoop; i++)
  18.             {
  19.                 for (int o = SecondStartCombination; o <= endSLoop; o++)
  20.                 {
  21.                     for (int n = 2; n <= Math.Sqrt(i); n++)
  22.                     {
  23.                         if (i % n == 0) { firstLoop = false; break; }
  24.  
  25.                     }
  26.  
  27.  
  28.                     for (int m = 2; m <= Math.Sqrt(o); m++)
  29.                     {
  30.                         if (o % m == 0) { secondLoop = false; break; }
  31.  
  32.                     }
  33.  
  34.                     if (firstLoop && secondLoop)
  35.                     {
  36.                         Console.WriteLine($"{i}{o}");
  37.                     }
  38.                     else { firstLoop = true; secondLoop = true; }
  39.  
  40.                 }
  41.  
  42.             }
  43.         }
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement