处理要求计算“y”值的作业,如果给出“n”和“x”,则作业:
应该行:
P=P*(F+i/2);
在'else{}'里面?!
编码:
//Calculate the value of 'y';
#include<iostream>
using namespace std;
int main()
{
double y, P=1, F=1;
int x, n, i, j;
cout<<"The value of x=";
cin>>x;
cout<<"The value of n=";
cin>>n;
for(i=1;i<=n;i++)
{
if(i==2||i==3)
{
}
else
{
for(j=1;j<=(2*i-1);j++)
{
F=F*j;
}
}
P=P*(F+i/2);
}
y=pow((2*x+3),3)+P;
cout<<"The result for the value of y="<<y<<endl;
return 0;
}