温暖砖头

文章
2
资源
0
加入时间
4年1月24天

例5.6 输出以下4*5的矩阵。

C程序设计(第四版) 谭浩强 个人设计例5.6 输出以下4*5的矩阵。1 2 3 4 52 4 6 8 103 6 9 12 154 8 12 16 20代码块:#include <stdio.h>#include <stdlib.h>void matrix(int sn, int w, int n);...