CT

em hãy viết thuật toán cho bài toán sau:

y=1/2 x 2/3 x 3/4 x 4/5 x.....x m/m+1

Cứu me vs mn :(((

NT
24 tháng 12 2021 lúc 14:35

#include <bits/stdc++.h>

using namespace std;

long long m,i;

double s;

int main()

{

cin>>m;

s=1;

for (i=1; i<=m; i++)

s=s*((i*1.0)/((i+1)*1.0))

cout<<fixed<<setprecision(2)<<s;

return 0;

}

Bình luận (0)