cout<<"here1"<<endl;c++用法
时间: 2023-10-30 21:09:58 浏览: 76
c++函数用法
这段代码是 C++ 中的输出语句,使用 `cout` 对象输出字符串 "here1",并在末尾添加一个换行符 `endl`,使输出内容换行。具体用法如下:
```cpp
#include <iostream> // 引入输入输出流库
using namespace std;
int main() {
cout << "here1" << endl; // 输出 here1 并换行
return 0;
}
```
输出结果为:
```
here1
```
阅读全文