Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1.         static void Main(string[] args)
  2.         {
  3.             Console.ReadLine();
  4.  
  5.             for(int x = 5; x >= 1; x--)
  6.             {
  7.                 for(int y = 6; y > x; y--)
  8.                 {
  9.                     Console.Write(x*2 - 1);
  10.                 }
  11.                 Console.WriteLine();
  12.             }
  13.             Console.ReadLine();
  14.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement