Advertisement
stefkay

Isosceles Triangle

Sep 3rd, 2015
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. using System;
  2. using System.Text;
  3.  
  4.  
  5. class IsoscelesTriangle
  6. {
  7.     static void Main()
  8.     {
  9.  
  10.         Console.OutputEncoding = Encoding.UTF8;
  11.         char copy = '\u00A9';
  12.         char space = ' ';
  13.         Console.WriteLine("{0}{0}{0}{1}\r\n{0}{0}{1}{0}{1}\r\n{0}{1}{0}{0}{0}{1}\r\n{1}{0}{1}{0}{1}{0}{1}", space, copy);
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement