摘要:
【作业要求】 一、PTA作业6-3数字金字塔 1.实验代码: 1 void pyramid (int n) 2 { 3 int row, col; 4 for (row = 1; row <= n; row++){ 5 for (col = 1; col <= n-row; col++) 6 { 7 阅读全文
posted @ 2018-12-20 21:22
苏末然
阅读(463)
评论(18)
推荐(0)