Advertisement
Spocoman

06. Triples of Latin Letters

Jan 18th, 2022
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 KB | None | 0 0
  1. using System;
  2.  
  3. namespace TriplesOfLatinLetters
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int num = int.Parse(Console.ReadLine());
  10.             int final = 97 + num;
  11.  
  12.             for (int i = 97; i < final; i++)
  13.             {
  14.                 for (int j = 97; j < final ; j++)
  15.                 {
  16.                     for (int x = 97; x < final; x++)
  17.                     {
  18.                         Console.WriteLine($"{(char)i}{(char)j}{(char)x}");
  19.                     }
  20.                 }
  21.             }
  22.         }
  23.     }
  24. }
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement