commit 916555cb10110f6c748e70cb5337752432a325b8 parent 52fad575802e99c34f93e03ba91ca34dd1d547b7 Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu> Date: Sat, 13 Feb 2016 18:15:04 -0500 add new test by Andrew Chambers Diffstat:
| A | minic/test/euler9.c | | | 27 | +++++++++++++++++++++++++++ |
1 file changed, 27 insertions(+), 0 deletions(-)
diff --git a/minic/test/euler9.c b/minic/test/euler9.c @@ -0,0 +1,27 @@ +#include <stdio.h> + +main() +{ + int i; + int a; + int b; + int c; + int d; + + for (a = 1; a < 1000; a++) { + for (b = a + 1; b < 1000; b++) { + d = a*a + b*b; + for (i = 0; i < 1000; i++) { + if (i * i == d) { + c = i; + if (b < c && a+b+c == 1000) { + printf("%d\n", a*b*c); + return 0; + } + break; + } + } + } + } +} +