- 455 名前:デフォルトの名無しさん mailto:sage [2007/06/28(木) 19:00:07 ]
- >>453
void hyouji(int array[][3]) { int i,j; for(i=0;i<3;i++){ for(j=0;j<3;j++) printf("%3d",array[i][j]); putchar('\n'); } } void tasizan(int A[][3],int B[][3],int C[][3]) { int i,j; for(i=0;i<3;i++) for(j=0;j<3;j++) C[i][j]=A[i][j]+B[i][j]; }
|

|