Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Program
- {
- internal class Program
- {
- public static void Main(string[] args)
- {
- Console.WriteLine("Zadejte počet řádků");
- int radky = int.Parse(Console.ReadLine());
- for (int i = 1; i <= radky; i++)
- {
- for (int k = 0; k < radky - i; k++)
- {
- Console.Write(" ");
- }
- for (int j = 0; j < 2 * i - 1; j++)
- {
- Console.Write("*");
- }
- Console.WriteLine();
- }
- Console.ReadKey();
- }
- }
- }
Add Comment
Please, Sign In to add comment