拿去吧,不用谢

み柒壹ン  •  27天前


include <bits/stdc++.h>

using namespace std;

int main() {

double a, b, x, y;
cin >> a >> b;
cin >> x >> y;
double c = a / b, z = x / y;
if (c > z) {
	cout << ">";
} else if (c == z) {
	cout << "=";
} else {
	cout << "<";
}
return 0;

}


评论:

请先登录,才能进行评论