Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
26296 盛漫妮 比大小 C++ Accepted 4 MS 720 KB 190 2022-05-18 15:02:50

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<<"SQUARE"<<endl; }else{ cout<<"RECTANGLE"<<endl; } return 0; }