-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Expand file tree
/
Copy pathsol1.c
More file actions
26 lines (24 loc) · 675 Bytes
/
sol1.c
File metadata and controls
26 lines (24 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
* \file
* \brief [Problem 9](https://projecteuler.net/problem=9) solution - A naive
* implementation
* \author [Krishna Vedala](https://github.com/kvedala)
*/
#include <stdio.h>
/** Main function */
int main(void)
{
for (int a = 1; a < 300; a++)
for (int b = a + 1; b < 400; b++)
for (int c = b + 1; c < 500; c++)
{
if (a * a + b * b == c * c)
if (a + b + c == 1000)
{
printf("%d x %d x %d = %ld\n", a, b, c,
(long int)a * b * c);
return 0;
}
}
return 0;
}