访客只能看到部份内容,免费 加入会员 或由脸书 Google 可以看到全部内容
#include<iostream> #include<math.h> #include<cstdlib> using namespace std; int main() { double a,b,c,flag=1; double s; while(flag) { cout<<"输入边长 a="; cin>>a; cout<<"输入边长 b="; cin>>b; cout<<"输入边长 c="; cin>>c; if( (a+b>c) && (b+c>a) && (a+c>b) ) { s=(a+b+c)/2.0; flag=0; cout<<"三角形面积:"<<sqrt(s*(s-a)*(s-b)*(s-c))<<endl; } else { cout<<"这不是三角形"<<endl; } } system("pause"); }