From 33ce5bbbbf0e67020da53186515d6474d2f353cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E5=A4=A7=E4=BB=99?= <1900919313@qq.com> Date: Tue, 22 Oct 2024 11:22:21 +0800 Subject: [PATCH] c --- docs/notes/01_c-basic/07_xdx/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/notes/01_c-basic/07_xdx/index.md b/docs/notes/01_c-basic/07_xdx/index.md index 0d805f4..e91a1b0 100644 --- a/docs/notes/01_c-basic/07_xdx/index.md +++ b/docs/notes/01_c-basic/07_xdx/index.md @@ -221,7 +221,7 @@ int main() { > > * ① C 语言中,没有严格意义上的布尔类型,可以使用 0(假) 或 1(真)表示布尔类型的值。 > * ② 不要将 `==` 写成 `=`,`==` 是比较运算符,而 `=` 是赋值运算符。 -> * ③ `>=` 或 `<=`含义是只需要满足 `大于或等于`、`小于或等于`其中一个条件,结果就返回真。 +> * ③ `>=` 或 `<=`含义是:只需要满足 `大于或等于`、`小于或等于`其中一个条件,结果就返回真。 ## 3.2 应用示例