Update bfg.c

This commit is contained in:
e2002e 2019-10-07 23:00:27 +02:00 committed by GitHub
parent 4b41480549
commit c414d9a3ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
bfg.c
View file

@ -195,7 +195,7 @@ int accu(int value)
int i = 0;
for(int a=1; a<=value; ++a)
{
i+=a+1;
i+=a;
}
return i;
}