Print reverse equilateral triangle (Pyramid) star pattern
#include <stdio.h>
int main()
{
int i, j, rows;
/* Input rows to print from user */
printf("Enter number of rows : ");
scanf("%d", &rows);
for (i = 1; i <= rows; i++)
{
/* Print leading spaces */
for (j = 1; j < i; j++)
{
printf(" ");
}
/* Print stars */
for (j = 1; j <= (rows * 2 - (2 * i - 1)); j++)
{
printf("*");
}
/* Move to next line */
printf("\n");
}
return 0;
}
Output
Enter number of rows: 5
*********
*******
*****
***
*
0 Comments