Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
40872 YOYOLEE-李昕颖 比大小 C++ 通过 1 MS 252 KB 207 2024-02-18 10:41:05

Tests(1/1):


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


测评信息: