Skip to main content

Generate the following Pyramids . 1 2 2 3 3 3 4 4 4 4

PROCEDURE:-
    1.enter the number of rows n
    2.set i to 1
    3.repeat steps 4 to 8 until i<=n
    4.set j to 1
    5.repeat steps 6 and 7 until j<=i
    6.print the value of j
    7.increment j by 1
    8. go to new line ,increment i by 1 
CODE:-

# include<stdio.h>
void main()
{
int i,j,n;
printf(“enter value for n”);
scanf(“%d”,&n);
for(i=1;i<=n;i++)
  {
   for(j=1;j<=i; j++)
     {
      printf(“ %3d”,j);
      }
    printf(“\n”);
  }
  }

Input:-enter value for n 3
Output:-1
    1. 2
    2. 3  3
 

Comments

Popular posts from this blog

Find Value of S=ut+1/2*a*t**2.

PROCEDURE:-        1.enter values for u,a,t to find distance        2.find distance with the formulae ut+1/2at 2        3.print the above result CODE:- #include<stdio.h> #include<conio.h> void main() {   float u,t,a,S;   clrscr();   printf(“enter values u,t,a”);   scanf(“%f %f %f”, &u,&t,&a);   S=(u*t)+(0.5*a*t*t);   printf(“\n  S = %f”, S); } Input:- enter values u,t,a               U=10,t=4,a=4.9 Output:- S =79.200