From a763c450cb0755fd6ac4726137d13ef03366e9c7 Mon Sep 17 00:00:00 2001 From: xuzilin <2849252603@qq.com> Date: Sat, 15 Apr 2023 15:40:55 +0800 Subject: [PATCH] =?UTF-8?q?XZL=5F=E4=BA=A4=E6=8D=A2=E4=B8=A4=E4=B8=AA?= =?UTF-8?q?=E5=8D=95=E7=B2=BE=E5=BA=A6=E6=B5=AE=E7=82=B9=E5=9E=8B=E6=95=B0?= =?UTF-8?q?=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 630ebda..71ca419 100644 --- a/README.md +++ b/README.md @@ -209,7 +209,10 @@ int Descending(float a,float b) ``` void SwapFloat(float *x,float *y) { - + float temp; + temp = *x; + *x = *y; + *y = temp; } ```