質問編集履歴

1

funcAとfuncBが逆だった。

2016/08/21 23:53

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -54,11 +54,7 @@
54
54
 
55
55
 
56
56
 
57
- #include "main.h"
58
-
59
-
60
-
61
- int funcB(int x) { return funcA(2) + 2; }
57
+ int funcA(int x) { return x + 2; }
62
58
 
63
59
  ```
64
60
 
@@ -70,7 +66,11 @@
70
66
 
71
67
 
72
68
 
69
+ #include "main.h"
70
+
71
+
72
+
73
- int funcA(int x) { return x + 2; }
73
+ int funcB(int x) { return funcA(2) + 2; }
74
74
 
75
75
  ```
76
76