Advertisement
nguyenhappy92

Tính S(n) = 1/(1*2) + 1/(2*3) + ... + 1/(n*(n+1))

Sep 16th, 2015
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. // Tinh S(n) = 1/(1*2) + 1/(2*3) + ... + 1/(n*(n+1))
  2. // Khai bao thu vien
  3. #include<stdio.h>
  4. #include<conio.h>
  5.  
  6. void main()
  7. {
  8. // khai bao bien
  9. int n;
  10. // nhap du lieu
  11. scanf("%d",&n);
  12. float s=0;
  13. for(int i=1;i<=n;i++)
  14. {
  15. s=s+ (float) 1/(i*(i+1));
  16. }
  17. printf("%.2f",s);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement