我刚学c++,为什么一个短程序,编译能通过,run不起来。
我刚学c++,为什么一个短程序,编译通过,run不起来。
我用的是microsoft 的visual c++ 6.0
//Fig.1.2:fig01_02.cpp
//A first programe in c++
#include <iostream>
begins programe execution
int main()
{
std::cout <<"welcome to c++!\n";
return 0;
} //end function main
//function main
--------------------Configuration: greet - Win32 Debug--------------------
Compiling...
greet.cpp
C:\greet\greet.cpp(4) : error C2146: syntax error : missing ';' before identifier 'programe'
C:\greet\greet.cpp(4) : error C2501: 'begins' : missing storage-class or type specifiers
C:\greet\greet.cpp(4) : fatal error C1004: unexpected end of file found
执行 cl.exe 时出错.
greet.exe - 1 error(s), 0 warning(s)
[此贴子已经被作者于2006-2-20 18:02:59编辑过]