Skip to content

Instantly share code, notes, and snippets.

@r-lyeh
Created December 17, 2024 19:27
Show Gist options
  • Save r-lyeh/e92889df7fb01ca2f2f5c307b4e10399 to your computer and use it in GitHub Desktop.
Save r-lyeh/e92889df7fb01ca2f2f5c307b4e10399 to your computer and use it in GitHub Desktop.
// [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