Home  >  Article  >  Backend Development  >  How to write sequentially using for loop or while loop?

How to write sequentially using for loop or while loop?

WBOY
WBOYforward
2023-09-06 22:45:061081browse

How to write sequentially using for loop or while loop?

Example

#include
#include
void main() {
   int i,j,a=0,b=1,n;
   clrscr();
   printf("****************OUTPUT*****************</p><p></p><p>");
   printf("enter the value of n : ");
   scanf("%d",&n);
   printf("</p><p> the required order is: </p><p></p><p>" );

   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("</p><p>");
   }
   getch();
}

The above is the detailed content of How to write sequentially using for loop or while loop?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete