Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
3188 D班-罗炜翰 勾股数 C++ 解答错误 0 0 MS 252 KB 261 2024-12-22 16:38:43

Tests(0/5):


#include<iostream> using namespace std; int main() { int 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"; } }


测评信息: