Skip to content

Instantly share code, notes, and snippets.

@joffilyfe
Created January 18, 2015 16:27
Show Gist options
  • Save joffilyfe/3020c7b1233d177999f5 to your computer and use it in GitHub Desktop.
Save joffilyfe/3020c7b1233d177999f5 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void) {
int i, dividendo;
float sum;
i = sum = 0;
for (i = 1, dividendo = 1; i <= 39; i += 2, dividendo *= 2) {
sum += (float)i/dividendo;
}
printf("%.2f\n", sum);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment