From 14400394733a226afb306608179558e696e12b30 Mon Sep 17 00:00:00 2001 From: Respawnz <47511522+Respawnz@users.noreply.github.com> Date: Sat, 2 Mar 2019 09:20:12 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BF=BB=E8=AF=91=E4=BF=AE=E6=AD=A3=20(#580)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 翻译修正 --- eBook/05.4.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eBook/05.4.md b/eBook/05.4.md index c45d702..33c8a1f 100644 --- a/eBook/05.4.md +++ b/eBook/05.4.md @@ -135,7 +135,7 @@ func main() { **练习 5.5** [for_character.go](exercises/chapter_5/for_character.go) -创建一个程序,要求能够打印类似下面的结果(直到每行 25 个字符时为止): +创建一个程序,要求能够打印类似下面的结果(尾行达 25 个字符为止): G GG @@ -145,7 +145,7 @@ func main() { GGGGGG 1. 使用 2 层嵌套 for 循环。 -2. 使用一层 for 循环以及字符串截断。 +2. 仅用 1 层 for 循环以及字符串连接。 **练习 5.6** [bitwise_complement.go](exercises/chapter_5/bitwise_complement.go)