Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- //Write a program that prints an isosceles triangle of 9 copyright symbols ©, something like this:
- // ©
- // © ©
- // © ©
- //© © © ©
- class PrintTriangle
- {
- static void Main()
- {
- Console.WriteLine(@"
- *
- * *
- * *
- * * * *");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment