viết chương trình tính giá trị biểu thức sau
A=1-1/2+1/3-1/4+...+-1/n
*dấu + ở trên, dấu - ở dưới
Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.
#include <bits/stdc++.h>
using namespace std;
int n,i;
double s;
int main()
{
cin>>n;
s=1;
for (i=2; i<=n; i++)
{
if (i%2==0) s=s+1/(i*1.0);
else s=s-1/(i*1.0);
}
cout<<fixed<<setprecison(2)<<s;
return 0;
}
#include <bits/stdc++.h>
using namespace std;
long long i,n;
double p;
int main()
{
cin>>n;
p=0;
for (i=1; i<=n; i++)
p=p+1/(i*1.0);
cout<<p+3*n;
return 0;
}
Bài 2:
#include <bits/stdc++.h>;
using namespace std;
int main();
{
long m,n;
cout<<"Nhap m="; cin>>m;
cout<<"Nhap n="; cin>>n;
cout<<m*n-2;
return 0;
}
Program hotrotinhoc;
var A: real;
i,n: integer;
begin
write('Nhap N='); readln(n);
for i:=1 to n do
if i mod 2=0 then A:=A+1/i else A:=A-1/i;
write('A=',A:1:2);
readln
end.