開發環境 : Microsoft Visual C++ 2010 Express
Q : 執行以下最基本的C++語言 卻發生錯誤
「#include <iostream>': 尋找先行編譯標頭使用時略過」
CODE
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
A: 經過一番GOOGLE 之後
發現在 #include <iostream> 之前 加入 #include "stdafx.h"
(一定要加在 #include <iostream> 之前)
即可解決此錯誤
CODE
#include "stdafx.h"
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
system("pause");
return 0;
}
JUST SAHRE
沒有留言:
張貼留言