這樣的一段程序:
#include<iostream.h>
int main()
{
cout << "Come up and C++ me some time.";
cout << "YOU won-t regret it!" << endl;
int i=0;
cin>>i;
return 0;
}
引用的是#include<iostream.h>的話,就不需要在cout前面加 std::這個名稱空間了,但是如果引用的是#include<iostream>的話就需要在cout前面加 std::或者在引用下面寫上
using namespace std; //不加這個的話, 就要 std::cout這么寫
原因不甚清楚。
