列印多層金字塔 (15 分)
本題目要求讀入2個整數n和m,m表示小金字塔的行數,n代表大金字塔的層數。然後輸出多層金字塔。
在一行中層數n和 小金字塔的行數m。
對每一組輸入,顯示對應的圖案
在這裡給出一組輸入。例如:
2 3
在這裡給出相應的輸出。例如:
*
********
* *
*** ***
***** *****
#include
#include
int main()
///printf("第1個塔 的第%d行",line);
int star;
for(star = 1; star <= line*2-1; star++)
int tower;
for(tower = 2; tower<= layer; tower++)
///printf(" 第%d個塔 的第%d行", tower, line);
int star;
for(star = 1; star <= line*2-1; star++)
}printf("\n");
}//printf("\n");
}return 0;
}
練習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...