Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
43171 楼俊毅 比大小 C++ Accepted 2 MS 276 KB 215 2022-12-05 19:39:22

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a*a<b*c){ cout<<"RECTANGLE"; } if(a*a>b*c){ cout<<"SQUARE"; } if(a*a==b*c){ cout<<"SAME"; } return 0; }