Silahkan Melihat Tutorial di website kami dengan nyaman ENJOY YOUR LIFE ☕

Nested 1 Type Symbol Pyramid

Q. Write a nested single symbol pyramid C program as:

#
#
##
##
###
###
####
####

Ans.

/*c program for nested single symbol pyramid*/
#include<stdio.h>
int main()
{
 int num,r,c,z;
 printf("Enter Maximum Loop Repeat Number: ");
 scanf("%d", &num);

 for(r=1; r<=num; r++)
 {
  for(c=1; c<=2; c++)
  {
   for(z=1; z<=r; z++)
      printf("#");
   printf("\n");
  }
 }
 getch();
 return 0;
}

/****************************************
The output of above program would be
****************************************/


Output for nested Single Symbol Pyramid C program
Figure: Screen shot for nested Single Symbol Pyramid C program


Related Programs:






0 komentar:

Post a Comment

Nested 1 Type Symbol Pyramid