题解在此
2025-08-06 17:44:19
发布于:浙江
5阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main(){
int a,b,c,d;
cin>>a>>b>>c>>d;
if (a==b&&b==c&&c==d){
cout<<"square";
}else{
cout<<"rectangle";
}
return 0;
}
这里空空如也
有帮助,赞一个