Sunday, March 2, 2014

Reverse pyramid in c

#include<stdio.h>
#include<conio.h>
int main()
{
        int i,n,j;
        system("cls");
        printf("\n Please Give The Value of N:  ");
        scanf("%d",&n);
        for(i=n;i>0;i--)
        {
            for(j=n-i;j>0;j--)
            printf("  ");
            for(j=2*i-1;j>0;j--)
            printf(" *");
            printf("\n");
        }
        getch();
}

No comments:

Post a Comment