回答編集履歴
1
プログラムの修正
answer
CHANGED
@@ -11,16 +11,15 @@
|
|
11
11
|
|
12
12
|
printf(" %3i", row * column);
|
13
13
|
|
14
|
-
if (row == rowMax && column == columnMax)
|
15
|
-
{
|
16
|
-
return;
|
17
|
-
}
|
18
|
-
|
19
14
|
if (row == rowMax)
|
20
15
|
{
|
16
|
+
printf("\n");
|
17
|
+
if (column == columnMax)
|
18
|
+
{
|
19
|
+
return;
|
20
|
+
}
|
21
21
|
nextRow = 1;
|
22
22
|
nextColumn++;
|
23
|
-
printf("\n");
|
24
23
|
}
|
25
24
|
|
26
25
|
PlotMultSub(nextRow, nextColumn);
|
@@ -35,7 +34,6 @@
|
|
35
34
|
rowMax = row;
|
36
35
|
columnMax = column;
|
37
36
|
PlotMultSub(1, 1);
|
38
|
-
printf("\n");
|
39
37
|
}
|
40
38
|
|
41
39
|
int main ()
|