printf是C程序提供的一种输出的方式,必须指定一种数据输出的格式。而cout是在控制台的输出,是流向显示器的数据,这个不必指定数据类型。
cout要有
#include
using namespace std;的头文件。
3.用法:
int i=0;
cout<<"i="<
在C++中使用cout 输出 必须包含命名空间 或 包含头文件
#include
using namespace std;
呃 感觉区别是 ... 呃 到底怎么说 区别很大 但是又不是很大..
#include
using namespace std;
C 语言输出 printf
C++ 输出用cout