fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. double a=1, b=0;
  5. for (int i=1; i<=10; i++)
  6. {
  7. a=a/i;
  8. b=b+a;
  9. }
  10. printf("Сумма элементов равна %lf\n", b);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
Сумма элементов равна 1.718282