📅  最后修改于: 2023-12-03 15:13:45.504000             🧑  作者: Mango
在c++中输出一个字符串可以使用std::cout
,例子如下:
std::cout << "Hello World!" << std::endl;
这将在终端中输出 "Hello World!"。
要输出多个字符串,我们可以使用多个std::cout
语句,或者使用字符串连接符 +
,例如:
std::cout << "abc" << ", " << "def" << ", " << "ghw" << std::endl;
这将在终端中输出 (abc), (def), (ghw)
。
如果我们希望将这个字符串保存在一个变量中,我们可以使用std::string
,例如:
std::string my_string = "(abc), " + "(def), " + "(ghw)";
现在,my_string
将包含字符串 "(abc), (def), (ghw)"。
我们可以使用std::cout
将my_string
输出到终端,例如:
std::cout << my_string << std::endl;
这将在终端中输出 "(abc), (def), (ghw)"。
希望这可以帮助你在c++中输出字符串!