解题思路:勾股定理
注意事项:或字符
参考代码:
#include <stdio.h>
#include <math.h>
int main()
{
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
if((a==sqrt(b*b+c*c))||(b==sqrt(a*a+c*c))||(c==sqrt(a*a+b*b))){
printf("YES");}else{
printf("NO");
}
return 0;
}
0.0分
0 人评分
The 3n + 1 problem (C++代码)(所有测试数据都小于等于1000,,说好的1000000之内呢)浏览:1124 |
十->二进制转换 (C++代码)(零和负数需要特殊处理)浏览:1135 |
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:685 |
点我有惊喜!你懂得!浏览:1417 |
C语言训练-尼科彻斯定理 (C语言代码)。。。内含证明定理浏览:2142 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:589 |
川哥的吩咐 (C语言代码)浏览:926 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:822 |
不会做的浏览:954 |
打水问题 (C语言代码)浏览:1148 |