c语言程序从键盘输入一个33的矩阵并显示出来,求代码

更新时间:01-24 教程 由 念旧 分享

#include"stdio.h"intmain(){inta[3][3],i,j;for(i=0;i<3;i++){for(j=0;j<3;j++)scanf("%d",&a[i][j]);}for(i=0;i<3;i++){for(j=0;j<3;j++)printf("%d",a[i][j]);printf("\n");}return0;}/*运行结果:

1

2

3

4

5

6

7

89123456789*/

声明:关于《c语言程序从键盘输入一个33的矩阵并显示出来,求代码》以上内容仅供参考,若您的权利被侵害,请联系13825271@qq.com
本文网址:http://www.25820.com/tutorial/14_2162101.html