Q. Write a C program to print the following even odd number star pyramid as:
1
*2
1*3
*2*4
1*3*5
*2*4*6
Ans.
/*odd even number star pyramid C program*/
#include<stdio.h>
int main()
{
int num,r,c,z;
printf("Enter no. of rows : ");
scanf("%d", &num);
for(r=1; r<=num; r++)
{
for(c=1,z=r; c<=r; c++,z--)
{
if(z%2==0)
printf("%d",c);
else
printf("*");
}
printf("\n");
}
getch();
return 0;
}
The output of above program would be:
1
*2
1*3
*2*4
1*3*5
*2*4*6
Ans.
/*odd even number star pyramid C program*/
#include<stdio.h>
int main()
{
int num,r,c,z;
printf("Enter no. of rows : ");
scanf("%d", &num);
for(r=1; r<=num; r++)
{
for(c=1,z=r; c<=r; c++,z--)
{
if(z%2==0)
printf("%d",c);
else
printf("*");
}
printf("\n");
}
getch();
return 0;
}
The output of above program would be:
Figure: Screen shot for odd even number star pyramid C program |
No comments:
Post a Comment