Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
482 关清声 比大小 C++ Accepted 0 MS 264 KB 240 2022-08-24 09:52:42

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"<<endl; } else if(a*a==b*c) { cout<<"SAME"<<endl; } else { cout<<"SQUARE"<<endl; } return 0; }