计算输入数据的和与乘积(C语言) 摘要:解题思路:使用递归思想,进行深入求解。注意事项:对x进行分解速度较快。参考代码:#include<stdio.h>int is(int k, long x){ if(x==k){ return 1;…… 题解列表 2023年03月23日 0 点赞 0 评论 338 浏览 评分:0.0