二、程序改錯題
下列給定程序中,函數(shù)proc()的功能是根據(jù)整型形參n,計算如下公式的值:
Y=1-1/(22)+1/(33) 1/(44)+…+(-1)(n+1)/(nn)
例如,n中的值為10,則應(yīng)輸出0.817962。
請修改程序中的錯誤,使它能得到正確結(jié)果。
注意:不要改動main()函數(shù),不得增行或刪行,也不得更改程序的結(jié)構(gòu)。
試題程序:
#include
#include
#include
double proc(int n)
{
double y=1.0;
//****found****
int j=1;
int i;
for(i=2;i<=n;i++)
{
j=-1*j;//****found****
y+=1/(i*i);
}
return(y);
}
void main()
{
int n=10:
system("CLS");
printf("\nThe result is%1f\n”,proc(n));
}
相關(guān)推薦:
2014年計算機二級C語言考試上機沖刺試題及答案集
2014年計算機二級考試C語言考前預(yù)測選擇題匯總
考試吧考后首發(fā)2014年3月計算機等考真題及答案通