关于string find的用法
#include<iostream>#include<string>usingnamespacestd;intmain(){chars[100],str1[20],str...
#include<iostream>
#include<string>
using namespace std;
int main() {
char s[100], str1[20], str2[20];
int i;
gets(s);
cin >> str1 >> str2;
i = s.find(str1);
while (str2[i] != '\0') {
s[i] = str2[i];
i++;
}
return 0;
}
11行的 i = s.find(str1); 有什么问题?
find() 括号里的参数不能是一个字符串数组吗?
main.cpp:11: error: request for member ‘find’ in ‘s’, which is of non-class type ‘char [100]’
这句话什么意思? 展开
#include<string>
using namespace std;
int main() {
char s[100], str1[20], str2[20];
int i;
gets(s);
cin >> str1 >> str2;
i = s.find(str1);
while (str2[i] != '\0') {
s[i] = str2[i];
i++;
}
return 0;
}
11行的 i = s.find(str1); 有什么问题?
find() 括号里的参数不能是一个字符串数组吗?
main.cpp:11: error: request for member ‘find’ in ‘s’, which is of non-class type ‘char [100]’
这句话什么意思? 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询