Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _1zadanie
- {
- class Program
- {
- static void Main(string[] args)
- {
- string val;
- Console.Write("Wprowadź liczbę ");
- val = Console.ReadLine();
- int x = Convert.ToInt32(val);
- for (int i = 0; i<x; i++)
- {
- Console.Write("*");
- }
- for (int i = 0; i < x; i++)
- {
- Console.Write("\n");
- for (int j = 0; j <= i; j++)
- {
- if (i == j)
- {
- Console.Write("*");
- } else
- {
- Console.Write(" ");
- }
- }
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment