Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace KolednaElha
- {
- class Program
- {
- static void Main(string[] args)
- {
- int n = int.Parse(Console.ReadLine());
- for (int i = 0; i <= n; i++)
- {
- var star = new string('*', i);
- var interval = new string(' ', n - i);
- Console.Write(interval);
- Console.Write(star);
- Console.Write(" | ");
- Console.Write(star);
- Console.WriteLine(interval);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment