From e1fcb9b565849d863678da14d093e4b2d9ba5dff Mon Sep 17 00:00:00 2001 From: LHY0125 <3364451258@qq.com> Date: Sun, 19 Oct 2025 22:16:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=AD=A6=E4=B9=A0=E7=9A=84?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 数据结构/陈越数据结构/clock.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/数据结构/陈越数据结构/clock.c b/数据结构/陈越数据结构/clock.c index e6380ba..78e9ae4 100644 --- a/数据结构/陈越数据结构/clock.c +++ b/数据结构/陈越数据结构/clock.c @@ -18,7 +18,8 @@ double duration; void MyFunction() { long long sum = 0; - for (int i = 1; i <= 1000000; i++) { + for (int i = 1; i <= 1000000; i++) + { sum += i; } printf("计算结果:1到1000000的和为 %lld\n", sum);