Spocoman

05. Challenge the Wedding

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