标签:
C++中使用 cout 来输出,cout是一个对象,存在与 iostream 中,因此要先引入该文件
例子:std::cout<<"Hello World!";
完整代码:
#include<iostream> int main(){ std::cout << "Hello World!"; return 0; }
1.2 输出语句的使用
原文地址:http://www.cnblogs.com/cplusplus-study/p/4503026.html