View Code of Problem 67

#include<stdio.h>
void main() 
{
	int x1, x2, x3, x4, y1, y2, y3, y4;
	while (scanf("%d %d %d %d %d %d %d %d", &x1, &y1, &x2, &y2, &x3, &y3, &x4, &y4) != EOF)
	{
		if (x1 == x2 && x3 == x4)
		{
			if (x1 == x3)
			{
				printf("YES\n");
			}
			else
			{
				printf("NO\n");
			}
		}
		float tan1 = (y2 - y1) / (x2 - x1);
		float tan2 = (y4 - y3) / (x4 - x3);
		if (tan1 == tan2)
		{
			if (x1 == x3)
			{
				printf("YES\n");
			}
			else
			{
				printf("NO\n");
			}
			
		}
		else
		{
			printf("YES\n");
		}
	}
}

Double click to view unformatted code.


Back to problem 67