Computer >> Máy Tính >  >> Lập trình >> lập trình C

Chương trình in hoa văn kim cương trong C

Mô tả chương trình

Mô hình Kim cương là sự kết hợp giữa mô hình kim tự tháp đơn giản và mô hình kim tự tháp ngược.

Thuật toán

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.

Ví dụ

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

Đầu ra

Chương trình in hoa văn kim cương trong C