|
공부하시는 책이 오래된 것 같군요. 에러메세지는 잘 모르겠습니다.
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!\n";
return 0;
}
아니면
#include <iostream>
int main()
{
std::cout << "Hello world!\n";
return 0;
}
태한 님이 쓰신 글 :
: //그림은
:
: #include <iostream.h>
:
: int main()
: {
: cout << "Hellow World!\n";
:
: return 0;
: }
builder에서 다른 분들은 잘 컴파일 되나요? 지금 리눅스라서 ...
|