Advertisement
soxa

IsoscelesTriangle

Nov 5th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.40 KB | None | 0 0
  1. using System;
  2. using System.Text;
  3.  
  4. class Program
  5. {
  6.     static void Main()
  7.     {
  8.         Console.OutputEncoding = Encoding.UTF8;
  9.  
  10.         char copyRight = (char)0x00A9;
  11.  
  12.         Console.WriteLine(@"
  13.                                 {0}
  14.                               {0}   {0}
  15.                             {0}       {0}
  16.                           {0}   {0}   {0}   {0}",copyRight);
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement