From 54fc0c05b0670bbf87d99b1c2f9348293b268b27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=98=E7=A5=A4=E9=BA=92?= <91871324+lvren1485@users.noreply.github.com> Date: Thu, 3 Jul 2025 23:05:55 +0800 Subject: [PATCH] Update ch03.tex MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 3.6.1示例代码修正 --- src/ch03.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch03.tex b/src/ch03.tex index 420abe7..e4c3114 100644 --- a/src/ch03.tex +++ b/src/ch03.tex @@ -643,7 +643,7 @@ \subsection{数组} let mut j = i * i; while j < 10000 { sieve[j] = false; - j += 1; + j += i; } } }