練習5-3 數字金字塔(15 分)
本題要求實現函式輸出n行數字金字塔。
void pyramid( int n );
其中n
是使用者傳入的引數,為[1, 9]的正整數。要求函式按照如樣例所示的格式列印出n
行數字金字塔。注
意每個數字後面跟乙個空格。
#include void pyramid( int n );
int main()
/* 你的**將被嵌在這裡 */
5
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
#include void pyramid( int n );
int main()
void pyramid(int n)
//每一行左邊空格輸完後輸出數字,n行n個數字(數字後面有乙個空格)
for(k=1; k<=i; k++)
//換行
printf("\n");
}
}
練習5 3 數字金字塔 15分
本題要求實現函式輸出n行數字金字塔。函式介面定義 void pyramid int n 其中n是使用者傳入的引數,為 1,9 的正整數。要求函式按照如樣例所示的格式列印出n行數字金字塔。注 意每個數字後面跟乙個空格。裁判測試程式樣例 include void pyramid int n int ma...
練習5 3 數字金字塔 15分
題目描述 本題要求實現函式輸出n行數字金字塔。函式介面定義 void pyramid int n 其中n是使用者傳入的引數,為 1,9 的正整數。要求函式按照如樣例所示的格式列印出n行數字金字塔。注意每個數字後面跟乙個空格。裁判測試程式樣例 include void pyramid int n in...
練習5 3 數字金字塔 15分
本題要求實現函式輸出n行數字金字塔。函式介面定義 下面展示一些內聯 片。void pyramid int n 其中n是使用者傳入的引數,為 1,9 的正整數。要求函式按照如樣例所示的格式列印出n行數字金字塔。注 裁判測試程式樣例 include void pyramid int n int main...