Pages

Saturday, 19 May 2012

program to print a trangle.


60./*Write a program to print a trangle.*/

#include<stdio.h>
#include<conio.h>
main()
{
int n,i,j;
clrscr();
printf("Enter How Many Lines You Want In This Figure:");
scanf("%d",&n);
for(i=0;i<n;i++)
{
for(j=0;j<=i;j++)
{
printf("*");
}
printf("\n");
}
getch();
}

OUTPUT
            Enter How Many Lines You Want In This Figure:5
            *
            * *
            * * *
            * * * *
            * * * * *

No comments:

Post a Comment