2022年6月30日 星期四

打印數字金字塔圖案

 

#include<stdio.h>

#include<conio.h>

int main()

{

int n, i, j;

printf("Enter the number of rows: ");

scanf("%d",&n);

for(i = 1; i <= n; i++)//1~n列 

{

  for(j = n; j >= i; j--)//每一列連續印n個空白 3 2 1個空白 列每增加1列空白就少一格

  {

    printf(" ");

  }

  for(j = 1; j <= i; j++)//印數字 

  {

  printf("%d ",j);//印完數字要加空白 

  }

printf("\n");

}

    return 0;

}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...