#include
using namespace std;
int main()
{
double x1, y1, x2, y2;
cout << "1: ", cin >> x1 >> y1;
cout << "2: ", cin >> x2 >> y2;
if (y1==y2) cout << "Ровная дорога";<br> else if (x1==x2) cout << "Обрыв";<br> else if ((y2-y1)/(x2-x1)>0) cout <<" Горка";<br> else cout << "Спуск";<br> return 0;
}
Пример:
1: 3 2
2: 7 8
Горка