HHH
2025-07-12 14:42:28
发布于:河北
2阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int x,y;
cin >> x >> y;
if(x > y){
cout << ">";
}else if(x < y){
cout << "<";
}else{
cout << "=";
}
return 0;
}
全部评论 1
2025-07-17 来自 河北
0
2025-07-12 14:42:28
发布于:河北
#include<iostream>
using namespace std;
int main(){
int x,y;
cin >> x >> y;
if(x > y){
cout << ">";
}else if(x < y){
cout << "<";
}else{
cout << "=";
}
return 0;
}
有帮助,赞一个