#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
int main() {
int x, y, t;
for (x = 0; x <= 1000; x++) {
for (y = 0; y <= 1000; y++) {
if (x + 100 == y * y) {
for (t = 0; t <= 1000; t++) {
if (x + 100 + 168 == t * t) {
printf("结果为: %d\n", x);
}
}
}
}
}
}