题解
2024-12-10 20:49:34
发布于:江苏
8阅读
0回复
0点赞
#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 if(x==y){
cout<<"same";
}
return 0;
}
#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;
}
#include<iostream>
using namespace std;
int main(){
int x,y;
cin>>x>>y;
if(x>y){
cout<<"big";
}
if(x<y){
cout<<"small";
}
if(x==y){
cout<<"same";
}
return 0;
}
这里空空如也
有帮助,赞一个