我用的是Borland C++ 5.5這個版本的編譯器
卻連最陽春型的程式都有錯誤,不知道是怎麼一回事
我已經照書上的說明加入
bcc32.cfg 和ilink32.cfg 這兩個檔案
bcc32.cfg的內容是:
-I"c:\Borland\Bcc55\include"
-L"c:\Borland\Bcc55\lib"
ilink32.cfg的內容是:
-L"c:\Borland\Bcc55\lib
-------分隔---------------------------
我的程式碼是最陽春的顯示"hello world!!" 這個字串的程式,以下是我的程式:
#include
void main ()
{
cout << "hello,world!!" << endl;
}
---------分隔-------------------------
顯示的錯誤有三個:
Error E2209 test.cpp 1: unable to open include file 'iostream.h'
Error E2451 test.cpp 4: undefined symbol 'cout' in function main ()
Error E2451 test.cpp 4: undefined symbol 'endl' in function main ()
--------------分隔------------------
請問各位大大這是什麼問題呢?!
要怎麼處理呢?! 請各位幫幫我呀!!
剛要學C++卻連編譯器都搞不定的我 悲哀...
2007-05-19 19:34:24 · 1 個解答 · 發問者 龍仔 1 in 電腦與網際網路 ➔ 程式設計
//Power by Visual Studio 2005
#include
#include
int main(int argc, char** argv)
{
//==========START==========//
//程式敘述
//==========END==========//
system("PAUSE");
return EXIT_SUCCESS;
}
2007-05-20 12:59:27 補充:
#include
using namespace std; <-我忘了加這行
int main(int argc, char** argv)
2007-05-19 19:52:14 · answer #1 · answered by Big_John-tw 7 · 0⤊ 0⤋