[C] 좌표값 구하기
출처 : 네이버 지식인(http://kin.naver.com/db/detail.php?dir_id=10104&docid=563921) Visual C++ 6.0으로 작성했습니다. #include int main(void) { int sx,sy,ex,ey,d,i,temp; float a, b, f; printf("첫번째 좌표를 입력하세요(예: 10 6) = > "); scanf("%d %d",&sx,&sy); printf("두번째 좌표를 입력하세요(예: 10 6) = > "); scanf("%d %d",&ex,&ey); if(sx>ex){ temp=sx; sx=ex; ex=temp; temp=sy; sy=ey; ey=temp; } a=(float)(sy-ey) / (float)(sx-ex); b=(floa..