http://acm.hdu.edu.cn/showproblem.php?pid=2393
判断直角三角形
View Code
#include <stdio.h> #include <string.h> int main() { int t; scanf("%d",&t); for(int cas=1;cas<=t;cas++) { int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("Scenario #%d:\n",cas); if(a*a==b*b+c*c || b*b==a*a+c*c || c*c==a*a+b*b) puts("yes"); else puts("no"); putchar('\n'); } return 0; }