题解
2024-04-29 19:21:54
发布于:北京
2阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int a, b, c, d;
cin >> a >> b >> c >> d;
if(a == b and a == c and a == d){
cout << "square";
}
else{
cout << "rectangle";
}
return 0;
}
这里空空如也
有帮助,赞一个