1
0
Fork 0

p2: optcode and readable fix.

This commit is contained in:
Henrik Hautakoski 2010-06-18 16:22:13 +02:00
parent 97cef85bd6
commit f22af0ffaf

4
p2.c
View file

@ -15,11 +15,11 @@ int main() {
while(c < 4000000) {
c = a+b;
c = a + b;
a = b;
b = c;
if((c % 2) == 0)
if (c & 1)
r += c;
}