Write a program that computes and outputs the value of S using a function to calculate factorial and a function to calculate exponential
S= x1/2 + x2/4 + x3/6 + x4/8 +.......N
السلام عليكم
كيف اكتب كود برنامج بلغة c++ يحسب وينتج قيمة S باستخدام دالة لحساب العامل ( مفكوك العدد) ودالة لحساب الأسي ( الاس) :
S= x1/2 + x2/4 + x3/6 + x4/8 +.......N
كيف احول هذا الكود الى كود للدوال بلغة c++
{
int sum=0,m,n;
float avg;
cout<<" Enter N : ";
cin>>n;
cin>>f;
}
for(int j=1; j<=n; j++) {
cout<<" Enter M : ";
cin>>m;
sum=sum+m;
}
avg=sum/n;
cout<<" The sum= "<<sum<<endl;
cout<<" The average= "<<avg<<endl;
}