题解 | #三角形判断#
三角形判断
https://www.nowcoder.com/practice/689ec1e742394e09b1059556fc167b65
#include <stdio.h> int main() { int a,b,c; while (scanf("%d %d %d", &a, &b,&c) != EOF) { // 注意 while 处理多个 case // 64 位输出请用 printf("%lld") to if(a+b>c) { if(a==b && b!=c) {printf("Isosceles triangle!\n");} else if(a==c && c!=b) {printf("Isosceles triangle!\n");} else if(b==c && a!=c) {printf("Isosceles triangle!\n");} else if(a==b && b==c) {printf("Equilateral triangle!\n");} else {printf("Ordinary triangle!\n");} } else { printf("Not a triangle!\n"); } } return 0; }