-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexcercise-5.c
51 lines (46 loc) · 905 Bytes
/
excercise-5.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
51
#include <stdio.h>
void StarPattern(int rows)
{
// Write Stars
for (int i = 0; i < rows; i++)
{
for (int j = 0; j <= i; j++)
{
printf("*");
}
printf("\n");
}
}
void ReverseStarPattern(int rows)
{
// Write Stars
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 Triangular Star Pattern and 1 for Reverse Triangular Star Pattern: ");
scanf("%d", &type);
printf("How many rows do you want: ");
scanf("%d", &rows);
switch (type)
{
case 0:
StarPattern(rows);
break;
case 1:
ReverseStarPattern(rows);
break;
default:
printf("You have entered invalid choice\n");
break;
}
return 0;
}