#include <stdio.h> #include <math.h> /* 用到sqrt()函数 */ int main(void) { /*三角形三条边*/ int a, b, c; /* 周长, 面积, 周长的一半*/ ...