From 44c526f43aa0d42b804c9c4a507a644648bbfcb6 Mon Sep 17 00:00:00 2001 From: unknown <2756262977qq.com> Date: Mon, 13 Feb 2023 16:56:10 +0800 Subject: [PATCH 1/4] wcj --- wcj/wish.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 wcj/wish.html diff --git a/wcj/wish.html b/wcj/wish.html new file mode 100644 index 0000000..8fd0b0f --- /dev/null +++ b/wcj/wish.html @@ -0,0 +1,12 @@ + + + + + + + 要工作了 + + +

好好学习,努力挣钱,养自己/养女朋友/养男朋友

+ + \ No newline at end of file -- Gitee From 384fbcbfa245323ace36a0c3b5656cc17df57ff8 Mon Sep 17 00:00:00 2001 From: unknown <2756262977qq.com> Date: Mon, 13 Feb 2023 17:04:46 +0800 Subject: [PATCH 2/4] =?UTF-8?q?=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "\346\265\213\350\257\225\344\273\243\347\240\201.txt" | 1 + 1 file changed, 1 insertion(+) create mode 100644 "\346\265\213\350\257\225\344\273\243\347\240\201.txt" diff --git "a/\346\265\213\350\257\225\344\273\243\347\240\201.txt" "b/\346\265\213\350\257\225\344\273\243\347\240\201.txt" new file mode 100644 index 0000000..153e530 --- /dev/null +++ "b/\346\265\213\350\257\225\344\273\243\347\240\201.txt" @@ -0,0 +1 @@ +6546546516565 \ No newline at end of file -- Gitee From 3590bd27ef76fa6358e18c6f19080578ce58a9b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E6=88=90=E6=9D=B0?= <2756262977@qq.com> Date: Wed, 15 Feb 2023 03:36:37 +0000 Subject: [PATCH 3/4] =?UTF-8?q?=E8=AE=A1=E7=AE=97=E5=99=A8=E4=BD=9C?= =?UTF-8?q?=E4=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 吴成杰 <2756262977@qq.com> --- ...12\240\345\207\217\344\271\230\351\231\244.js" | 15 +++++++++++++++ .../\350\277\220\350\241\214.js" | 5 +++++ 2 files changed, 20 insertions(+) create mode 100644 "\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232-\345\220\264\346\210\220\346\235\260/\345\212\240\345\207\217\344\271\230\351\231\244.js" create mode 100644 "\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232-\345\220\264\346\210\220\346\235\260/\350\277\220\350\241\214.js" diff --git "a/\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232-\345\220\264\346\210\220\346\235\260/\345\212\240\345\207\217\344\271\230\351\231\244.js" "b/\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232-\345\220\264\346\210\220\346\235\260/\345\212\240\345\207\217\344\271\230\351\231\244.js" new file mode 100644 index 0000000..ea197a8 --- /dev/null +++ "b/\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232-\345\220\264\346\210\220\346\235\260/\345\212\240\345\207\217\344\271\230\351\231\244.js" @@ -0,0 +1,15 @@ +let js ={ + 'jia':function(a,b){ + return a+b; + }, + 'jian':function(a,b){ + return a-b; + }, + 'cheng':function(a,b){ + return a*b; + }, + 'chu':function(a,b){ + return a/b; + }, +} +module.exports=js; \ No newline at end of file diff --git "a/\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232-\345\220\264\346\210\220\346\235\260/\350\277\220\350\241\214.js" "b/\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232-\345\220\264\346\210\220\346\235\260/\350\277\220\350\241\214.js" new file mode 100644 index 0000000..f6f7553 --- /dev/null +++ "b/\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232-\345\220\264\346\210\220\346\235\260/\350\277\220\350\241\214.js" @@ -0,0 +1,5 @@ +let result=require("./加减乘除"); +console.log(result.jia(0,1)); +console.log(result.jian(4,2)); +console.log(result.cheng(1,3)); +console.log(result.chu(8,2)); \ No newline at end of file -- Gitee From b95e495af625a8cb3c3fe37552a2e360769c8dc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E6=88=90=E6=9D=B0?= <2756262977@qq.com> Date: Wed, 15 Feb 2023 03:37:33 +0000 Subject: [PATCH 4/4] =?UTF-8?q?=E9=87=8D=E5=91=BD=E5=90=8D=20=E8=AE=A1?= =?UTF-8?q?=E7=AE=97=E5=99=A8=E4=BD=9C=E4=B8=9A-=E5=90=B4=E6=88=90?= =?UTF-8?q?=E6=9D=B0=20=E4=B8=BA=201=E8=AE=A1=E7=AE=97=E5=99=A8=E4=BD=9C?= =?UTF-8?q?=E4=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\345\212\240\345\207\217\344\271\230\351\231\244.js" | 0 .../\350\277\220\350\241\214.js" | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename "\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232-\345\220\264\346\210\220\346\235\260/\345\212\240\345\207\217\344\271\230\351\231\244.js" => "1\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232/\345\212\240\345\207\217\344\271\230\351\231\244.js" (100%) rename "\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232-\345\220\264\346\210\220\346\235\260/\350\277\220\350\241\214.js" => "1\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232/\350\277\220\350\241\214.js" (100%) diff --git "a/\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232-\345\220\264\346\210\220\346\235\260/\345\212\240\345\207\217\344\271\230\351\231\244.js" "b/1\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232/\345\212\240\345\207\217\344\271\230\351\231\244.js" similarity index 100% rename from "\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232-\345\220\264\346\210\220\346\235\260/\345\212\240\345\207\217\344\271\230\351\231\244.js" rename to "1\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232/\345\212\240\345\207\217\344\271\230\351\231\244.js" diff --git "a/\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232-\345\220\264\346\210\220\346\235\260/\350\277\220\350\241\214.js" "b/1\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232/\350\277\220\350\241\214.js" similarity index 100% rename from "\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232-\345\220\264\346\210\220\346\235\260/\350\277\220\350\241\214.js" rename to "1\350\256\241\347\256\227\345\231\250\344\275\234\344\270\232/\350\277\220\350\241\214.js" -- Gitee