C++ 实例 – 输出换行

秋山信月归

C++ 实例 - 输出换行

使用 C++ 输出,并对多个输出内容进行换行,使用 \n 或 endl:

实例 - \n 换行

#include <iostream>
using namespace std;
 
int main() {
    cout << "Runoob \n";
    cout << "Google \n";
    cout << "Taobao";
    return 0;
}

实例 - endl 换行

#include <iostream>
using namespace std;
 
int main() {
    cout << "Runoob" << endl;
    cout << "Google" << endl;
    cout << "Taobao";
    return 0;
}

以上程序执行输出结果为:

Runoob 
Google 
Taobao
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码