请大侠帮我指点一下
include<iostream>#include<cmath>
using namgespace std;
int main()
{
int a,b,c;
cout<<"请输入两条边直角边的长度:";
cin>>a>>b; //输入两条直角边的长度
c=sqrt(a*a+b*b); //计算斜边的长度
cout<<end1<<"斜边的长度为:"<<c<<end1; //输出斜边的长度
return o;
} 为什么在c++ 6.0上运行不出来呢????