第30446题 单选题
现有如下C++代码,执行后输出的结果为?
#include <iostream>
#include <string>
using namespace std;
int main() {
    string s = "hello,world!";
    s.erase(5, 1);
    int pos = s.find("world");
    s.append(2, '!');
    string res = s.substr(pos, 5);
    cout << res << endl;
    return 0;
}
A

world

B

world!

C

hellow

D

hello!

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析