100% మాధవన్ సిరీస్ C prog to print the value of ln(1+t) for -1<t<1
//program to display the value of ln(1+t) for mod(t) <1
#include<stdio.h>void main()
{
int i,n;
float t,temp, total=0;
printf("\n enter the value of t :");
scanf("%f",&t);
printf("\n enter no of terms:");
scanf("%f",&n);
temp=t;
for(i=1;i<=n;i++)
{
total=total+(temp);
temp=-temp*t*i/(i+1);
}
printf("\n\n ln(1+t) =%f",total);
}
గమనిక t విలువ -1 మరియు 1 మధ్య ఉన్నప్పుడే ఈ మాధవన్ సిరీస్ పధ్ధతి ఉపయోగించగలరు
ఔట్పుట్ తెర మీద
enter the value of t :0
enter no of terms:4
ln(1+t) =0.000000
enter no of terms:4
ln(1+t) =0.000000
enter the value of t :0.5
enter no of terms:7
ln(1+t) =0.405465
enter no of terms:7
ln(1+t) =0.405465
కామెంట్లు
కామెంట్ను పోస్ట్ చేయండి
దయచేసి మీ సలహాలను సూచనలను స్పష్టంగా పేర్కొనగలరు. plz see that ur comments are 'acceptable' in a value based society.