首頁 >後端開發 >C++ >在C語言中寫一個程式來列印菱形圖案

在C語言中寫一個程式來列印菱形圖案

PHPz
PHPz轉載
2023-08-29 14:13:091642瀏覽

程式描述

鑽石圖案是簡單金字塔圖案和倒金字塔圖案的組合。

演算法

First Row: Display 1
Second Row: Display 1,2,3
Third Row: Display 1,2,3,4,5
Fourth Row: Display 1,2,3,4,5,6,7
Fifth Row: Display 1,2,3,4,5,6,7,8,9
Display the same contents from 4th Row till First Row below the fifth Row.

Example

的中文翻譯為:

範例

/* Program to print Diamond Pattern */
#include<stdio.h>
int main(){
   int i,j,k;
   clrscr();
   printf("</p><p>");
   printf("Diamond Pattern");
   printf("</p><p>");
   printf("</p><p>");
   for(i = 1;i<=5;i++){
      for(j = i;j<5;j++){
         printf(" ");
      }
      for(k = 1;k<(i*2);k++){
         printf("%d",k);
      }
      printf("</p><p>");
   }
   for(i = 4;i>=1;i--){
      for(j = 5;j>i;j--){
         printf(" ");
      }
      for(k = 1;k<(i*2);k++){
         printf("%d",k);
      }
      printf("</p><p>");
   }
   getch();
   return 0;
}

輸出

在C語言中寫一個程式來列印菱形圖案

以上是在C語言中寫一個程式來列印菱形圖案的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除