在C++中,内容的输出或打印,都是指将内容展示到代码执行结果区,也叫控制台,我们使用的单词是cout
。
一、标准输出 std::cout
在C++中,你可以使用 std::cout
来输出内容到标准输出(通常是控制台),std::cout
是 C++ 标准库中的输出流对象,位于 <iostream>
头文件中。
输出运算符 <<
用于将内容插入到输出流中。
std::cout << "hello world";
当我们使用 using namespace std;
的时候,可以将 std
命名空间中的所有成员引入当前的命名空间,这意味着你可以直接使用 std
命名空间中的成员,而不需要在每个使用处都显式地加上 std::
前缀。
cout << "hello world";
二、多个输出运算符 <<
cout << "hello world" << ",你好世界";
可以将多个输出的内容,连接起来展示。
三、换行输出 std::endl
std::endl
用于在输出的末尾插入换行符,如下程序。
cout << "hello world" << ",你好世界" << std::endl;
//省略 std::
cout << "hello world" << ",你好世界" << endl;
四、完整程序参考
#include <iostream>
using namespace std;
int main(){
cout << "hello world" << ", hello china" << ", hello beijing"<< endl;
cout << "你好,世界" << endl;
cout << "你好,中国" << endl;
return 0;
}