每个C++程序文件头必须要#include <iostream>吗?
另外谁能解释下iostream到底是个什么东西!
每个C++程序文件头必须要#include <iostream>吗?
另外谁能解释下iostream到底是个什么东西!
iostream是C++的标准输入输出流头文件.
如果程序中需要用到如:cout cin就需要include iostream头文件. (还要加上命名空间 using namespace std;)
都要,大自然的规矩。iostream表示(输入输出流)是个标准库