K12教育赛事综合服务平台
聚乐之家官方网站
下载聚乐之家官方App
专注青少年竞赛题库网站
#include <iostream> #include <string> using namespace std; int main() { string s1 = "hello"; string s2 = "world"; s1 += s2.substr(1, 3); s1.append("!"); cout << s1.size() << " " << s1.find('o') << endl; return 0; }
9 4
8 4
9 7
10 4