答案
2024-12-21 18:24:18
发布于:广西
2阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main()
{
int x,y;
cin >> x >> y;
if(x < y)
{
cout << "small";
}
if(x == y)
{
cout << "same";
}
if(x > y)
{
cout << "big";
}
return 0;
}
这里空空如也
有帮助,赞一个