From 5da9e0bbca1b98e173f40edf1260ec0446f3f763 Mon Sep 17 00:00:00 2001 From: winsonrich <42903383+winsonrich@users.noreply.github.com> Date: Tue, 23 Oct 2018 15:32:19 +0800 Subject: [PATCH] Update index.md --- guide/chinese/java/loops/control-statements/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/chinese/java/loops/control-statements/index.md b/guide/chinese/java/loops/control-statements/index.md index 4593ff4969..4c23ad1dc0 100644 --- a/guide/chinese/java/loops/control-statements/index.md +++ b/guide/chinese/java/loops/control-statements/index.md @@ -14,7 +14,7 @@ localeTitle: 跳转声明 当满足条件时,'break'控制语句会跳出循环。这意味着循环的其余部分将不会运行。 例如,在下面的循环中,如果我达到5,则循环中断,因此它不会继续。 ```java -for(int i=0;i<10;i++){ +for(int i = 0; i < 10; i++){ if(i == 5){ //if i is 5, break out of the loop. break; @@ -46,4 +46,4 @@ for(int i=0;i<10;i++){ ``` 0 1 2 3 4 6 7 8 9 -``` \ No newline at end of file +```