How to print half pyramids C Program to Print Pyramids and Patterns
In this model,
you will figure out how to print half pyramids, reversed pyramids, full
pyramids, upset full pyramids, Pascal's triangle, and Floyd's triangle in C
Programming.
To comprehend
this model, you ought to have the information on the accompanying C programming
subjects:
C if...else
Statement
C for Loop
C while and
do...while Loop
C break and
proceed
Example
1: Half Pyramid of
*
* *
* * *
* * * *
* * * * *
C Program
#include
<stdio.h>
int
main() {
int
i, j, rows;
printf("Enter
the number of rows: ");
scanf("%d",
&rows);
for
(i = 1; i <= rows; ++i) {
for
(j = 1; j <= i; ++j) {
printf("*
");
}
printf("\n");
}
return
0;
}
Example 2: Half Pyramid of Numbers
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
C Program
#include
<stdio.h>
int
main() {
int i, j, rows;
printf("Enter the number of rows:
");
scanf("%d", &rows);
for (i = 1; i <= rows; ++i) {
for (j = 1; j <= i; ++j) {
printf("%d ", j);
}
printf("\n");
}
return 0;
}
0 Comments