① c++ cout需要包含哪個頭文件
包含頭文件iosdream,比如下面的程序運行結果就是輸出顯示 hello!
#include<iostream>
using namespace std;
int main()
{
cout<<"hello!"<<endl;
return 0;}