[C]白駿2581号-直角三角形-


質問する

コード#コード#
#include <stdio.h>	

int main(void) {	
	int a, b, c, max;
	while (1) {
		scanf("%d %d %d", &a, &b, &c);
		if (a == 0 && b == 0 && c == 0)
			break;
		max = a > b ? (a > c ? a : c) : (b > c ? b : c);
		if (2 * max * max == a * a + b * b + c * c)
			printf("right\n");
		else
			printf("wrong\n");
	}
}