开荒
2023-12-16 20:32:56
发布于:浙江
94阅读
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 << '<';
}
全部评论 2
宁学c++?
2023-12-21 来自 内蒙古
0为啥没有大括号
2023-12-19 来自 内蒙古
0if后面的语句如果只有一条,就不用加{}
2023-12-20 来自 浙江
0ok
2023-12-21 来自 内蒙古
0
有帮助,赞一个