小程序运行出现这样的错误!大家帮忙看看!
运行环境:VC++6.0.源程序:
#include<iostream.h>
int main()
{
double a,b;
cout<<"Enter two float unmbers:";
cin>>a>>b;
double c=a+b;
cout<<"a+b="<<c<<end1;
return(1);
}
运行提示错误:error C2065: 'end1' : undeclared identifier
Error executing cl.exe.
大家帮忙解释一下~~~~谢谢了~~~