私のコードは正確な float 値を表示していません。これは、コードによってポイントが表示されないことを意味します。シリーズ 1 + 1/3 + 1/5 + 1/7 + 1/9+ を合計するために Turbo C を使用しています。 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();
}