fork download
  1. #include<stdio.h>
  2. #include<locale.h>
  3. #include<stdlib.h>
  4.  
  5. int main()
  6. {
  7.  
  8. float b=1, a=1, soma=0;
  9.  
  10. for(a=1;a<=99;a+=2)
  11. for(b=1;b<=50;b++)
  12. {
  13. soma+=(a/b);
  14. }
  15.  
  16. printf("%2f\n",soma);
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
11248.009766