1 Star 0 Fork 0

满心欢喜/journey to the West

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
练习5.c 476 Bytes
一键复制 编辑 原始数据 按行查看 历史
满心欢喜 提交于 2022-03-06 22:53 . ex
#define _CRT_SECURE_NO_WARNINGS 1
//写一个递归函数DigitSum(n),输入一个非负整数,返回组成它的数字之和
//例如,调用DigitSum(1729),则应该返回1 + 7 + 2 + 9,它的和是19
//输入:1729,输出:19
#include<stdio.h>
int DigitSum(int n)
{
static int sum = 0;
if (n < 10)
{
sum += n;
}
else
{
int l1 = n / 10;
int l2 = n % 10;
sum += l2;
DigitSum(l1);
}
return sum;
}
int main()
{
int a = 0;
scanf("%d", &a);
int add = DigitSum(a);
printf("%d", add);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/the-shinging-sun/journey-to-the-west.git
[email protected]:the-shinging-sun/journey-to-the-west.git
the-shinging-sun
journey-to-the-west
journey to the West
master

搜索帮助