How can I write in order with for loop or while loop?


Example

#include
#include
void main() {
   int i,j,a=0,b=1,n;
   clrscr();
   printf("****************OUTPUT*****************

");    printf("enter the value of n : ");    scanf("%d",&n);    printf("
the required order is:

" );    for(i=1;i<=n;i++) {       if(i==1)       printf("%d. E",i);       else {          printf("%d. ",i);          for(j=1;j<=i-1;j++)          printf("%d",a);          for(j=1;j<=i-1;j++)          printf("%d",b);       }       printf("
");    }    getch(); }

Updated on: 20-Jun-2020

139 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements