-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
38 lines (36 loc) · 783 Bytes
/
Program.cs
File metadata and controls
38 lines (36 loc) · 783 Bytes
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
using System;
namespace Star_Parttern
{
class Program
{
static void partern(int n)
{
if (n <= 1)
{
Console.WriteLine("*");
return;
}
Line(n);
Console.WriteLine("");
int p = n - 1;
partern(p);
return;
}
static void Line(int l)
{
if (l > 0)
{
Console.Write("*");
int t = l - 1;
Line(t);
}
return;
}
static void Main(string[] args)
{
Console.Write("Enter n: ");
int n = Convert.ToInt32(Console.ReadLine());
partern(n);
}
}
}