cout翻译成中文
cout翻译成中文是标准输出。
资料拓展:
coutcout用于在计算机屏幕上显示信息,是C++中iostream类型的对象,C++的输出是用“流”(stream)的方式实现的,流运算符的定义等信息是存放在C++的输入输出流库中的。
双语例句:
Notice that we use the cout operator. 请注意,我们使用了cout操作符,但C++不能够识别。
Note that the error messages must go to std:: cerr and not std:: cout. 注意,错误消息必须发送到std::cerr而不是std::cout。
They allow you to cout, paste, copy or duplicate text. 你可用它们来清点、贴、印或复写正文。
If you have ever worked with the two console streams" cin "and" cout," then this will become a breeze for you. 如果你用过标准控制台流“cin”和“cout,”那现在的事情对你来说很简单。
一个cout语句可以分写成若干行。如:cout<<"This is a simple C++ program."<<endl;可以写成cout<<"This is " //注意行末尾无分号。