1 Star 0 Fork 0

魏兵/kaoyan891

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test4.c 758 Bytes
一键复制 编辑 原始数据 按行查看 历史
魏兵 提交于 2023-10-16 17:24 . 提交了一些文档和测试用例
/*
* @Author: weibing9456 [email protected]
* @Date: 2023-10-16 14:15:43
* @LastEditors: weibing9456 [email protected]
* @LastEditTime: 2023-10-16 14:37:01
* @FilePath: \cppDemo\test4.c
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
#include <stdio.h>
/*利用递归求1*2*3+3*4*5+...的前m个偶数和*/
// n代表最后一个项的第一项,必须是奇数
int fun(int n)
{
if ((n % 2) == 0)
return -1;
if (n == 1)
return 1 * 2 * 3;
return fun(n - 2) + n * (n + 1) * (n + 2);
}
int main()
{
printf("获取n的k次方\n");
int result = fun(3);
printf("%d", result);
return 1;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wei-bing/kaoyan891.git
[email protected]:wei-bing/kaoyan891.git
wei-bing
kaoyan891
kaoyan891
master

搜索帮助