From 7f0e2f2330e73aab231ee73a7d1cd910c627319e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B1=AA=E5=BF=83=E7=A6=BE?= Date: Wed, 4 Oct 2023 16:04:59 +0800 Subject: [PATCH] =?UTF-8?q?`n=20=E9=98=B6=E6=96=90=E6=B3=A2=E9=82=A3?= =?UTF-8?q?=E5=A5=91=E6=95=B0=E5=88=97`=20=E6=94=B9=E4=B8=BA=20`=E7=AC=AC?= =?UTF-8?q?=20n=20=E4=B8=AA=E6=96=90=E6=B3=A2=E9=82=A3=E5=A5=91=E6=95=B0`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 此处原文为 Generate the nth Fibonacci number. --- src/ch03-05-control-flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch03-05-control-flow.md b/src/ch03-05-control-flow.md index 16f4ff8..4b7c314 100644 --- a/src/ch03-05-control-flow.md +++ b/src/ch03-05-control-flow.md @@ -249,7 +249,7 @@ again! 你做到了!这是一个大章节:你学习了变量、标量和复合数据类型、函数、注释、 `if` 表达式和循环!如果你想要实践本章讨论的概念,尝试构建如下程序: * 相互转换摄氏与华氏温度。 -* 生成 n 阶斐波那契数列。 +* 生成第 n 个斐波那契数。 * 打印圣诞颂歌 “The Twelve Days of Christmas” 的歌词,并利用歌曲中的重复部分(编写循环)。 当你准备好继续的时候,让我们讨论一个其他语言中 **并不** 常见的概念:所有权(ownership)。