mirror of
https://github.com/Aexiar/c.git
synced 2024-10-22 14:05:45 +02:00
c
This commit is contained in:
parent
39a000204b
commit
ca3277e56e
@ -747,19 +747,19 @@ int main() {
|
||||
|
||||
* 间接递归:可以理解为 `A()` 函数调用 `B()` 函数,`B()` 函数调用 `C()` 函 数,`C()` 函数调用 `A()` 函数,如下所示:
|
||||
|
||||
```c
|
||||
void A(){
|
||||
B();
|
||||
}
|
||||
|
||||
void B(){
|
||||
C();
|
||||
}
|
||||
|
||||
void C(){
|
||||
A();
|
||||
}
|
||||
```
|
||||
```c
|
||||
void A(){
|
||||
B();
|
||||
}
|
||||
|
||||
void B(){
|
||||
C();
|
||||
}
|
||||
|
||||
void C(){
|
||||
A();
|
||||
}
|
||||
```
|
||||
|
||||
> [!CAUTION]
|
||||
>
|
||||
@ -1009,7 +1009,8 @@ int main() {
|
||||
|
||||
int n = 4;
|
||||
|
||||
printf("第 %d 阶台阶的走法有 %d 种\n", n, moves(n)); // 第 4 阶台阶的走法有 5 种
|
||||
// 第 4 阶台阶的走法有 5 种
|
||||
printf("第 %d 阶台阶的走法有 %d 种\n", n, moves(n));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user