下列代码输出的是( )
string s="1234@@chenadai";
string str="12345";
s.replace(1,5,str);
cout<<s<<endl;
12345
2345@
112345chenadai
12345chenadai