一、题目描述

二、代码
#include <iostream>
using namespace std;
int main()
{
int a,b;
cin >> a >> b;
if (a>b)
{
cout << ">";
return 0;
}
if (a<b)
{
cout << "<";
return 0;
}
else
{
cout << "=";
return 0;
}
}

#include <iostream>
using namespace std;
int main()
{
int a,b;
cin >> a >> b;
if (a>b)
{
cout << ">";
return 0;
}
if (a<b)
{
cout << "<";
return 0;
}
else
{
cout << "=";
return 0;
}
}
418
246
3421
1014
962
746

被折叠的 条评论
为什么被折叠?
