回答編集履歴
1
追記
test
CHANGED
@@ -57,3 +57,37 @@
|
|
57
57
|
def / abc 1
|
58
58
|
|
59
59
|
```
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
[追記] strstr の件:
|
64
|
+
|
65
|
+
```
|
66
|
+
|
67
|
+
#include <stdio.h>
|
68
|
+
|
69
|
+
#include <string.h>
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
int main() {
|
76
|
+
|
77
|
+
const char* str = "私は映画が大好きです";
|
78
|
+
|
79
|
+
if ( strstr(str,"映画") && strstr(str,"好きです") ) {
|
80
|
+
|
81
|
+
printf("僕も映画は好きですよ!\n");
|
82
|
+
|
83
|
+
}
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
return 0;
|
88
|
+
|
89
|
+
}
|
90
|
+
|
91
|
+
```
|
92
|
+
|
93
|
+
問題ありませんねぇ...
|