回答編集履歴

1

プログラムの修正

2016/02/20 08:03

投稿

WoodenHamlet
WoodenHamlet

スコア306

test CHANGED
@@ -24,25 +24,23 @@
24
24
 
25
25
 
26
26
 
27
- if (row == rowMax && column == columnMax)
28
-
29
- {
30
-
31
- return;
32
-
33
- }
34
-
35
-
36
-
37
27
  if (row == rowMax)
38
28
 
39
29
  {
40
30
 
31
+ printf("\n");
32
+
33
+ if (column == columnMax)
34
+
35
+ {
36
+
37
+ return;
38
+
39
+ }
40
+
41
41
  nextRow = 1;
42
42
 
43
43
  nextColumn++;
44
-
45
- printf("\n");
46
44
 
47
45
  }
48
46
 
@@ -72,8 +70,6 @@
72
70
 
73
71
  PlotMultSub(1, 1);
74
72
 
75
- printf("\n");
76
-
77
73
  }
78
74
 
79
75