问题

软件 >> Calculator
Questions in category: Calculator (Calculator).

计算 $1*2*3+3*4*5+5*6*7+\cdots+99*100*101$ 的值.

Posted by haifeng on 2023-10-24 18:56:39 last update 2023-10-24 18:58:10 | Answers (0) | 收藏


计算 $1*2*3+3*4*5+5*6*7+\cdots+99*100*101$ 的值.

 

题目来自 C语言练手题(52个小练习)_c语言练习题-CSDN博客

 

解答

使用 Sowya的sum()函数

>> sum((2*k-1)*(2*k)*(2*k+1),k,1,50)
13002450
------------------------