This blog is mainly developed for individuals,who were interested in programming using C,C++,java and SQL.
Sunday, August 7, 2011
To generate pattern 321 21 1
#include<stdio.h>
void main() { int i,j,n; clrscr(); printf("how many lines you need to print :"); scanf("%d",&n); for(i=n;i>0;i--) { for(j=0;j<i;j++) { printf("%d",j+1); } printf("\n"); } getch(); }
No comments:
Post a Comment