質問編集履歴

1

文字列比較にstrcmpを使いました。

2021/05/11 12:52

投稿

whitehorse85921
whitehorse85921

スコア34

test CHANGED
File without changes
test CHANGED
@@ -56,7 +56,7 @@
56
56
 
57
57
  #include <stdlib.h>
58
58
 
59
-
59
+ #include <string.h>
60
60
 
61
61
  int main(void)
62
62
 
@@ -108,7 +108,7 @@
108
108
 
109
109
  int j = 0;
110
110
 
111
- if (s[i] == p_a[j][0]) { //ここが正しく動作しないです。
111
+ if (strcmp(s[i], p_a[j][0]) == 0) { //ここが正しく動作しないです。
112
112
 
113
113
  damage += atoi(p_a[j][1]);
114
114
 
@@ -128,6 +128,8 @@
128
128
 
129
129
  }
130
130
 
131
+
132
+
131
133
  ```
132
134
 
133
135