From 4d04fca59bc3aa58ad8f4e898c7c8de4b4c1e092 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E5=A4=A7=E4=BB=99?= <1900919313@qq.com> Date: Wed, 28 Aug 2024 14:13:03 +0800 Subject: [PATCH] c --- docs/notes/01_c-basic/02_xdx/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/notes/01_c-basic/02_xdx/index.md b/docs/notes/01_c-basic/02_xdx/index.md index 5f057b8..e188b29 100644 --- a/docs/notes/01_c-basic/02_xdx/index.md +++ b/docs/notes/01_c-basic/02_xdx/index.md @@ -778,7 +778,7 @@ const 数据类型 常量名 = 常量值; ```c #include -const int PI = 3.1415926; +const double PI = 3.1415926; int main() {