Advertisement
stefkay

Isosceles Triangle02

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