Write a program that, given two intervals, tells if one is inside the other.
Input : Input consists of four integer numbers a1, b1, a2, b2 that represent the intervals [a1,b1] and [a2,b2]. Assume a1≤ b1 and a2≤ b2.
Output : Print ‘=’ if the intervals are equal, ‘1’ if the first is inside the second (but they are not equal), ‘2’ if the second is inside the first (but they are not equal), or ‘?’ otherwise.
Input : Input consists of four integer numbers a1, b1, a2, b2 that represent the intervals [a1,b1] and [a2,b2]. Assume a1≤ b1 and a2≤ b2.
Output : Print ‘=’ if the intervals are equal, ‘1’ if the first is inside the second (but they are not equal), ‘2’ if the second is inside the first (but they are not equal), or ‘?’ otherwise.
#include <iostream> using namespace std; int main () { int a, b, c, d; cin >> a >> b >> c >> d; // Print ‘=’ if the intervals are equal, //‘1’ if the first is inside the second (but they are not equal), //‘2’ if the second is inside the first (but they are not equal), // or ‘?’ otherwise. if (a == c and b == d) cout << "=" << endl; else { if ((a >= c and b < d) or (a > c and b <= d)) cout << "1" << endl; else { if ((a <= c and b > d) or (a < c and b >= d))cout << "2" << endl; else cout << "?" << endl; } } }
No comments:
Post a Comment