回 帖 发 新 帖 刷新版面

主题:请教各位

Please provide the following summation. Use induction:
0^3 + 1^3 + 2^3 +~~~+ n^3 = (n^2)*(n+1)^2/4的运算
 
int f(int n)
{
   if(x==0)
    return 0
 else
return (n*n)*((n+1)*(n+1))/4
}
这样写对不对阿?

回复列表 (共2个回复)

沙发

错了

板凳

Please provide the following summation. Use induction:
0^3   1^3   2^3  ~~~  n^3 = (n^2)*(n 1)^2/4的运算

#include<stdio.h>
#include<math.h>
int main(void)
{
   int n,y;
   printf(“please input a int          number:\n”);
   scanf(“%d”,&n);
   y=pow(n,2)*pow(n 1,2)/4
;
   printf(“%d”,y);
   ruturn 0;
}

我来回复

您尚未登录,请登录后再回复。点此登录或注册