Advertisement
Guest User

Untitled

a guest
Jul 18th, 2014
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.84 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. class Program
  5. {
  6.     static void Main(string[] args)
  7.     {
  8.         int start = int.Parse(Console.ReadLine());
  9.         int end = int.Parse(Console.ReadLine());
  10.  
  11.         char[] letters = { 'a', 'b', 'c', 'd', 'e' };
  12.         int[] lettersNumbers = { 5, -12, 47, 7, -32 };
  13.         bool noFSl = true;
  14.  
  15.         for (int e = 0; e < letters.Length; e++)
  16.         {
  17.             for (int d = 0; d < letters.Length; d++)
  18.             {
  19.                 for (int c = 0; c < letters.Length; c++)
  20.                 {
  21.                     for (int b = 0; b < letters.Length; b++)
  22.                     {
  23.                         for (int a = 0; a < letters.Length; a++)
  24.                         {
  25.                            
  26.                         }
  27.                     }
  28.                 }
  29.             }
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement