Advertisement
YavorGrancharov

Magic_Letter

Jun 1st, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.03 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Magic_Letter
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             var firstLetter = char.Parse(Console.ReadLine());
  14.             var lastLetter = char.Parse(Console.ReadLine());
  15.             var magicLetter = char.Parse(Console.ReadLine());
  16.  
  17.             for (char first = firstLetter; first <= lastLetter; first++)
  18.             {
  19.                 for (char second = firstLetter; second <= lastLetter; second++)
  20.                 {
  21.                     for (char third = firstLetter; third <= lastLetter; third++)
  22.                     {
  23.                         string combination = first.ToString() + second.ToString() + third.ToString();
  24.  
  25.                         if (!combination.Contains(magicLetter)) {
  26.                             Console.Write(combination + " ");
  27.                         }
  28.                     }
  29.                 }
  30.             }
  31.         }
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement