我的代码没有显示精确的浮点值意味着我使用 Turbo C 总结系列 1 + 1/3 + 1/5 + 1/7 + 1/9+…..到 N 项
#include<iostream.h>
#include<conio.h>
void main()
{
int k=0;
int m=0;
int s=1;
clrscr();
cout<<"Enter the limit of the series: ";
cin>>m;
for(int j=1;j<=m;j=j+2)
{
m=1/j;
s+=m;
}
cout<<"Sum of the given series is: "<<s;
getch();
}