|
以下是引用DG中专生在2007-9-15 17:34:13的发言:
#include<iostream.h>
void main(void)
{ int a,b,sun;
cout<<"Input a,b:";
cin>>a>>b;
cout<<"Sum="<<a+b<<endl;
}
为什么在VC++6.0中会出现下面的错误信息的?程序代码没有错,老师试过可以,为什么我会有错误的
原因是什么,求助ing...
--------------------Configuration: 007 - Win32 Debug--------------------
Compiling...
007.cpp
E:\夜光\007\1\007\007.cpp(4) : error C2001: newline in constant
E:\夜光\007\1\007\007.cpp(5) : error C2146: syntax error : missing ';' before identifier 'cin'
E:\夜光\007\1\007\007.cpp(6) : error C2065: 'sum' : undeclared identifier
执行 cl.exe 时出错.
007.exe - 1 error(s), 0 warning(s)
编译有错,肯定有错。看红色部分。 |
|