求助,学习中一个程序出现错误,请大侠帮助
#include <iostream>using namespace std;
int main()
{
int a,b>>,sum;
cin>>a>>b;
sum=a+b;
cout<<"a+b="<<sum<<endl;
return 0;
}
------------------Configuration: 002 - Win32 Debug--------------------
Compiling...
002.cpp
E:\002.cpp(5) : error C2143: syntax error : missing ';' before '>>'
E:\002.cpp(5) : error C2143: syntax error : missing ';' before '>>'
E:\002.cpp(7) : error C2065: 'sum' : undeclared identifier
执行 cl.exe 时出错.
002.obj - 1 error(s), 0 warning(s)
我实在找不出错在哪里,请大侠请教,我是初学菜鸟