Created
December 17, 2024 19:27
-
-
Save r-lyeh/e92889df7fb01ca2f2f5c307b4e10399 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
// [src] https://benchmarksgame-team.pages.debian.net/benchmarksgame/performance/toosimple.html | |
#include <stdio.h> | |
int main() { | |
double sum = 0.0, flip = -1.0; | |
for (long i = 1; i <= 10000000; ++i) { | |
sum += (flip *= -1.0) / (2*i - 1); | |
} | |
printf("%.24f\n", sum*4.0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment