跪求C++题目答案。。。。 输入一个正整数n,计算并输出下面算式的值。要求定义和调用函数total(n),
展开全部
double total(int n)
{
if(1==n) return 1.0;
else return 1.0/n + total(n-1);
}
void main()
{
int n = 1;
scanf("%d",&n);
double tt = total(n);
printf("结果:%f\n",tt);
return;
}
{
if(1==n) return 1.0;
else return 1.0/n + total(n-1);
}
void main()
{
int n = 1;
scanf("%d",&n);
double tt = total(n);
printf("结果:%f\n",tt);
return;
}
更多追问追答
追问
大哥,为什么我放C语言里运行不起来呢? 说scanf那里有错误。
追答
Compiling...
main.cpp
Linking...
Creating browse info file...
test12.exe - 0 error(s), 0 warning(s)
我这里木有问题滴,语法上没有错误,难道是编译器差异?
将 int n = 1;拆开成两个语句试试?
贴错误上来看看。
D:\Project\test12\Debug>test12
6
结果:2.450000
结果应该也对
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询