POJ 3981 字符串替换 (string的基础使用)

1、c++中字符串的操作头文件 #include

2、getline

3、find

 

#include #include //c++中字符串操作的头文件! using namespace std; int main() { string str; while(getline(cin, str)) //getlin 函数 { int start = str.find("you"); while(start != string::npos) //这里要注意 { str.replace(start, 3, "we"); //替换字符串的函数 start = str.find("you", start+2); //找相应字符串的函数 } cout << str << endl; } return 0; }

 

 

你可能感兴趣的:(POJ,string,c)