运行判断后计算面积,但是运行后按下任意键就关闭界面了
#include <stdio.h>#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
float a,b,c,p,s;
printf("输入三角形的三边长a,b,c");
scanf("%f%f%f",&a,&b,&c);
if((a<b+c)&&(b<a+c)&&(c<a+b)){
p=(a+b+c)/2;
s=sqrt(p*(p-a)*(p-b)*(p-c));
printf("%f",s);
}
else{
printf("输入错误");
}
retu