首页 >后端开发 >C++ >如何使用C语言打印出菱形图案中的星星?

如何使用C语言打印出菱形图案中的星星?

PHPz
PHPz转载
2023-09-03 14:41:061469浏览

如何使用C语言打印出菱形图案中的星星?

在这里,为了以菱形图案打印星星,我们使用嵌套的 for 循环。

我们用于以菱形图案打印星星的逻辑如下所示 -

//For upper half of the diamond the logic is:
for (j = 1; j <= rows; j++){
   for (i = 1; i <= rows-j; i++)
      printf(" ");
   for (i = 1; i<= 2*j-1; i++)
      printf("*");
   printf("</p><p>");
}

假设让我们考虑 rows=5,它打印输出如下 -

      *
     ***
    *****
   *******
  *********

//For lower half of the diamond the logic is:
for (j = 1; j <= rows - 1; j++){
   for (i = 1; i <= j; i++)
      printf(" ");
   for (i = 1 ; i <= 2*(rows-j)-1; i++)
      printf("*");
   printf("</p><p>");
}

假设 row=5,将打印以下输出 -

*******
  *****
  ***
   *

示例

#include <stdio.h>
int main(){
   int rows, i, j;
   printf("Enter no of rows</p><p>");
   scanf("%d", &rows);
   for (j = 1; j <= rows; j++){
      for (i = 1; i <= rows-j; i++)
         printf(" ");
      for (i = 1; i<= 2*j-1; i++)
         printf("*");
      printf("</p><p>");
   }
   for (j = 1; j <= rows - 1; j++){
      for (i = 1; i <= j; i++)
         printf(" ");
      for (i = 1 ; i <= 2*(rows-j)-1; i++)
         printf("*");
      printf("</p><p>");
   }
   return 0;
}

输出

Enter no of rows
5
            *
          * * *
        * * * * *
      * * * * * * *
    * * * * * * * * *
      * * * * * * *
        * * * * *
         * * *
           *

以上是如何使用C语言打印出菱形图案中的星星?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除