Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
3190 D班-罗炜翰 勾股数 C++ 通过 100 1 MS 264 KB 280 2024-12-22 16:39:06

Tests(5/5):


#include<iostream> using namespace std; int main() { int a,b,c,d,e,f; cin>>a>>b>>c; d = a * a; e = b * b; f = c * c; if (d == e + f || e == d + f || f == e + d) { cout<<"True"; } else { cout<<"False"; } }


测评信息: