下⾯程序最后能够得到HelloC++的是()
int main() { string str = "HelloWorld"; ___________________ cout << str; return 0; }
str.replace(0, 5, "C++");
str.replace(5, 5, "C++");
str.replace(1, 5, "C++");
str.replace(4, 5, "C++");
发表评论