//海伦公式求面积,并且判断了是否为三角形,利用循环,输入错误可以继续重复输入 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <math.h> #include <stdlib.h> int main() { int a, b, c; float circumference, area; float p; while (1) { system("cls"); scanf("%d %d %d", &a, &b, &c); i...