1:
#include <bits/stdc++.h>
using namespace std;
double s;
int i;
int main()
{
s=1;
for (i=2; i<=100; i++)
if (i%2==0) s=s+1/(i*1.0);
cout<<fixed<<setprecision(2)<<s;
return 0;
}
Đúng 0
Bình luận (1)