题解列表

筛选

换硬币-题解(C语言代码)

摘要:#### 这是一道用递归来解的简单题 我们直接分析代码吧!!! ```c #include int fun(int n) { if (n == 1)//当硬币只有一元时,只有一种兑换 ……