Bootstrap

cout<<endl

cout 是 C++ 中的输出流,它的作用是向输出设备(通常是屏幕)输出信息。

<< 是流插入运算符,它的作用是将一个值插入到输出流中。

endl 是换行符,它的作用是在输出完当前行后换到下一行。

所以,cout<<endl 的作用是向输出设备输出一个换行符,使得下一条输出语句输出到下一行。

例如:

#include <iostream>
using namespace std;

int main()
{
    cout << "Hello, World!" << endl;
    cout << "This is a C++ program." << endl;
    return 0;
}

这段代码的输出结果是:

Hello, World!
Thisis a C++ program.
;