题解
2023-11-10 19:16:51
发布于:广东
1阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int a,b;
void triangle()
{
if(a>b) cout<<">";
else if(a<b) cout<<"<";
else if(a=b) cout<<"=";
}
int main()
{
cin>>a>>b;
triangle();
return 0;
}
这里空空如也
有帮助,赞一个