函数
2023-11-10 19:16:33
发布于:广东
2阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
long long 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;
}
这里空空如也
有帮助,赞一个