使用单个cout 语句并根据程序需要使用\n实例的数量, 将打印出多行文本。
#include <iostream> using namespace std; int main() { cout << " 你好 \n 世界! \n 我\n 喜欢 \n 编程"; return 0; }
你好 世界! 我 喜欢 编程!
0