-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStars_pattern.cs
61 lines (38 loc) · 1.15 KB
/
Stars_pattern.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace practice_star
{
class Program
{
static void Main(string[] args)
{
int number, i, k, count = 1;
Console.Write("Enter number of rows\n");
number = int.Parse(Console.ReadLine());
count = number - 1;
for (k = 1; k <= number; k++)
{
for (i = 1; i <= count; i++)
Console.Write(" ");
count--;
for (i = 1; i <= 2 * k - 1; i++)
Console.Write("*");
Console.WriteLine();
}
count = 1;
for (k = 1; k <= number - 1; k++)
{
for (i = 1; i <= count; i++)
Console.Write(" ");
count++;
for (i = 1; i <= 2 * (number - k) - 1; i++)
Console.Write("*");
Console.WriteLine();
}
Console.ReadLine();
}
}
}