Advertisement
nguyenhappy92

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

Sep 16th, 2015
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // Tinh S(n) = 1/2 + 1/4 + ... + 1/n
  2. // Khai bao ham 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. if(i%2==0)
  16. {
  17. s=s+ (float) 1/i;
  18. }
  19. }
  20. printf("%.2f",s);// lay 2 gia tri thap phan
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement