100% c prog to print e^t using మాధవన్ సిరీస్
//program to display the value of e^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=1;
for(i=1;i<=n;i++)
{
total=total+(temp);
temp=temp*t/(i);
}
printf("\n\n e^t =%f",total);
}
#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=1;
for(i=1;i<=n;i++)
{
total=total+(temp);
temp=temp*t/(i);
}
printf("\n\n e^t =%f",total);
}
ఔట్పుట్ తెర మీద
enter the value of t :0.0
enter no of terms:3
e^t =1.000000
enter no of terms:3
e^t =1.000000
enter the value of t :0.5
enter no of terms:4
e^t =1.648721
enter no of terms:4
e^t =1.648721
enter the value of t :2
enter no of terms:7
e^t =7.389057
enter no of terms:7
e^t =7.389057
కామెంట్లు
కామెంట్ను పోస్ట్ చేయండి
దయచేసి మీ సలహాలను సూచనలను స్పష్టంగా పేర్కొనగలరు. plz see that ur comments are 'acceptable' in a value based society.