注意:此页面搜索的是所有试题
[分析题,5分]
#include <stdio.h>
int fx(int n)
{
int s;
if (n==0) s=0;
else s=n+fx(n-2);
return s;
}
void main()
{
printf ("%d\n",fx(8));
}
#include <stdio.h>
int fx(int n)
{
int s;
if (n==0) s=0;
else s=n+fx(n-2);
return s;
}
void main()
{
printf ("%d\n",fx(8));
}
参考答案