A30551.【PY】比较大小
2024-12-29 19:30:57
发布于:江苏
0阅读
0回复
0点赞
管你是不是【PY】,能用C++就给做了。
#include<iostream>
using namespace std;
int main(){
int x,y;
cin>>x>>y;
if(x>y) cout<<"big";
else if(x<y) cout<<"small";
else cout<<"same";
return 0;
}
这里空空如也
有帮助,赞一个