2020-08-23 |

多个换行

使用单个cout 语句并根据程序需要使用\n实例的数量, 将打印出多行文本。

#include <iostream>
using namespace std;

int main()
{
    cout << " 你好 \n 世界! \n 我\n 喜欢 \n 编程";
    return 0;
}
    你好
    世界!
    我
    喜欢
    编程!    

0

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论