下面程序最后能够得到HelloC++的是( )。
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++");