程序代码:
#include<math.h>
#include<iostream>
using namespace std;
int main()
{
double a,b;
double c;
cout<<"请输入两条边直角边的长度:";
cin>>a>>b; //输入两条直角边的长度
c=sqrt(a*a+b*b); //计算斜边的长度
cout<<endl<<"斜边的长度为:"<< c <<endl; //输出斜边的长度
return 0;
}
这样改下就行了,sqrt的参数你也要注意下!