那里错了,新手求解
#include<iostream>using namespace std;
int main()
{int x;//第一条边
int y;//第二条边
int z;//第三条边
int A;//三角形的面积
cout <<"请输入第一条边边长\n";
cin >>x;
cout <<"请输入第二条边边长\n";
cin >>y;
cout <<"请输入第三条边边长\n";
cin >>z;
s=(x+y+z)/2;
A=sqrt(s*(s-x)*(s-y)*(s-z));
cout <<"三角形的面积是:"<<A <<endl;
return 0;
}