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

How to write sequentially using for loop or while loop?

WBOY
Release: 2023-09-06 22:45:06
forward
1099 people have browsed it

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();
}
Copy after login

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!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template