回答編集履歴
1
微修正
test
CHANGED
@@ -54,7 +54,7 @@
|
|
54
54
|
|
55
55
|
for (int x = 0; x < 3; ++x) {
|
56
56
|
|
57
|
-
printf("%2d ", get_at(mtx, 3, y, x));
|
57
|
+
printf("%2d ", mtx[y][x] /* get_at(mtx, 3, y, x)*/ );
|
58
58
|
|
59
59
|
}
|
60
60
|
|