Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
149702 耿俊贤 比大小 C++ Accepted 1 MS 276 KB 249 2026-03-16 16:36:26

Tests(10/10):


Code:

#include <bits/stdc++.h> using namespace std; int main(){ int a, b, c; cin >> a >> b >> c; if (a * a > b * c) { cout << "SQUARE"; } else if (a * a == b * c){ cout << "SAME"; } else { cout << "RECTANGLE"; } return 0; }