2 条题解

  • 1
    @ 2025-2-6 1:38:10

    if 秒了:

    #include <bits/stdc++.h>
    using namespace std;
    long long x, y;
    int main() {
    	cin >> x >> y;
    	if (x > y) cout << '>';
    	else if (x < y) cout << '<';
    	else cout << '=';
    	return 0;
    }
    

    信息

    ID
    4489
    时间
    1000ms
    内存
    512MiB
    难度
    1
    标签
    (无)
    递交数
    151
    已通过
    91
    上传者