我不知道我的代码有什么问题:
#include <iostream>
#include <string>
using namespace std;
int main()
{
string test;
cin>>test;
if (test[4] == ' ')
{
test[4] = '+';
}
cout<<test<<endl;
system("PAUSE");
return 0;
}
我基本上是在要求用户给我一个字符串(字符串将是“星际迷航”),然后,我希望将字符串替换为“+”。出于某种原因,我每次尝试都会得到这个。但是,当我运行它时,我会弹出一个对话框并显示“调试断言失败”和“表达式:字符串下标超出范围”。