kunshao 题解分享 · 2025/3/10
整数大小比较 - 题解
``` #include <bits/stdc++.h> using namespace std; int main() { int x,y; cin >> x >> y; if ( x > y ) { cout << ">"; } else if ( x == y ) { cout << "="; } else { cout << "<"; } return 0; } ```
0 0 0 2