#include <stdio.h> #include <math.h> int main(void) { double e1, e2, e3; double h; double cir, area; scanf("%lf %lf %lf", &e1, &e2, &e3); h = (e1 + e2 + e3) / 2; // 求得三角形半周长 printf("circumference=%.2lf area=%.2lf", e1 + e2 + e3, sqrt(h * (h - e1) * (h - e2) * (h - e3))); retu...