题解
2025-09-22 21:12:44
发布于:浙江
1阅读
0回复
0点赞
#include<bits/stdc++.h>
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 ;
}
这里空空如也
有帮助,赞一个