From 08674fca13235726a5c4bad929e57e2b67ba8aeb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=96=B9=E7=90=BC?= <2910196733@qq.com>
Date: Wed, 11 May 2022 03:26:59 +0000
Subject: [PATCH] =?UTF-8?q?=E4=BD=9C=E4=B8=9A?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
...2\347\216\257\344\275\234\344\270\232.txt" | 41 +++++++++++++++++++
1 file changed, 41 insertions(+)
create mode 100644 "\346\226\271\347\220\274/20220511-\345\276\252\347\216\257\344\275\234\344\270\232.txt"
diff --git "a/\346\226\271\347\220\274/20220511-\345\276\252\347\216\257\344\275\234\344\270\232.txt" "b/\346\226\271\347\220\274/20220511-\345\276\252\347\216\257\344\275\234\344\270\232.txt"
new file mode 100644
index 0000000..636b342
--- /dev/null
+++ "b/\346\226\271\347\220\274/20220511-\345\276\252\347\216\257\344\275\234\344\270\232.txt"
@@ -0,0 +1,41 @@
+
+
+
+
+
+";
+//3.
+$n=1;
+for ($i=10;$i>=$n;$i--){
+ echo $i;
+ echo "
";
+}
+
+$i=10;
+$n=1;
+while($i>=$n){
+ echo $i;
+ echo "
";
+ $i--;
+}
\ No newline at end of file
--
Gitee