질문게시판처럼 질문올려서 죄송합니다.... 코드를 짰는데 에러도 없는데 직각삼각형 점을 입력해도 무조건 삼각형이 아니라고 뜨네요....어디가 잘못된걸까요??
#include <stdio.h> #include <math.h>
struct point { int x,y; };
struct triangle { struct point a, b, c; }; void bubble_sort(double list[], int n); int is_right_triangle(struct triangle t);
int main() { struct triangle s;
printf("첫번째 점의 x y좌표를 입력 :"); scanf("%d %d", &s.a.x, &s.a.y); printf("두번째 점의 x y좌표를 입력 :"); scanf("%d %d", &s.b.x, &s.b.y); printf("세번째 점의 x y좌표를 입력 :"); scanf("%d %d", &s.c.x, &s.c.y);