Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
26294 黄雯 比大小 C++ Accepted 5 MS 728 KB 243 2022-05-18 14:46:03

Tests(10/10):


Code:

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