Last active
August 29, 2015 14:06
-
-
Save cuihaoleo/c40d1762f4fd2c9ce7f8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main () | |
{ | |
int a = 0, b = 1, c = 1, sum = 0; | |
while (c < 4000000) | |
{ | |
if (c % 2 == 0) | |
sum += c; | |
c = a + b; | |
a = b; | |
b = c; | |
} | |
printf("%d\n", sum); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment