Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145067 刘宸宇 比大小 C++ Wrong Answer 0 MS 272 KB 251 2026-01-24 20:35:04

Tests(2/10):


Code:

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


Run Info:

------Input------
83 90 80
------Answer-----
RECTANGLE
------Your output-----
SQUARE