1 C++ std::string输出双引号字符串

输出双引号“”到字符串中可以通过添加转义字符"\"对双引号进行转义,

可参考代码如下:

int main()
{
    string str = "\"Everything is worse!\"";
    cout << str << endl;
}