Advertisement
Spocoman

02. Letters Combinations

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