當前位置:首頁 » 編程語言 » c語言倒金字塔編程

c語言倒金字塔編程

發布時間: 2025-08-16 11:59:25

1. c語言程序輸出數字金字塔

給,已經編譯運行通過:
#include<conio.h>拿指局
#include<stdio.h>

void main()
{
int n;//這個就是定義的你需要輸出的行數
int i,j;

printf("please input the n: ");
scanf("%d",&n);//輸入需要輸出的行數

for(i=0;i<n;i++)
{
for(j=0;j<2*(n-1-i);j++) printf(" ");
for(j=0;j<=i;j++) printf("逗含%d",j+1);
for(j=0;j<2*i-1;j++) printf(" "消讓);
for(j=i+1;j>0;j--)
{
if(i==0) break;
printf("%d",j);
}

printf("\n");
}

getch();
}

熱點內容
印度預演算法 發布:2025-08-16 13:43:48 瀏覽:288
java基礎選擇題題庫 發布:2025-08-16 13:42:10 瀏覽:681
oracle資料庫的存儲結構設計 發布:2025-08-16 13:37:24 瀏覽:692
go安卓交叉編譯 發布:2025-08-16 13:33:06 瀏覽:89
銅梁編程 發布:2025-08-16 13:29:11 瀏覽:930
編程男生 發布:2025-08-16 13:12:33 瀏覽:567
php基本數據 發布:2025-08-16 13:08:47 瀏覽:784
廣度遍歷演算法 發布:2025-08-16 13:07:59 瀏覽:217
安卓手機如何控制cpu 發布:2025-08-16 13:04:17 瀏覽:394
安卓10對比安卓9有什麼變化 發布:2025-08-16 13:03:31 瀏覽:741