Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
3185 | D班-罗炜翰 | 勾股数 | C++ | 编译错误 | 0 | 0 MS | 0 KB | 268 | 2024-12-22 16:37:21 |
#include<bits/stdctt.h> using namespace std; int main() { float a,b,c,d,e,f; d = a * a; e = b * b; f = c * c; if (d == e + f || e == d + f || f == e + d) { cout<<"True"; } else { cout<<"False"; } }