-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstar_pattern.c
50 lines (44 loc) · 849 Bytes
/
star_pattern.c
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
#include <stdio.h>
void starPattern(int rows)
{
for (int i = 0; i < rows; i++)
{
for (int j = 0; j <= i; j++)
{
printf("*");
}
printf("\n");
}
}
void reverseStarPattern(int rows)
{
for (int i = 0; i < rows; i++)
{
for (int j = 0; j <= rows - i - 1; j++)
{
printf("*");
}
printf("\n");
}
}
int main()
{
int rows, type;
printf("Enter 0 for star pattern and 1 for reversed star pattern\n");
scanf("%d", &type);
printf("How many rows do you want?\n");
scanf("%d", &rows);
switch (type)
{
case 0:
starPattern(rows);
break;
case 1:
reverseStarPattern(rows);
break;
default:
printf("You have entered an invalid choice");
break;
}
return 0;
}