From a719f480c1c42a06b9b947edc4314050b2ba9ae5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C?= <3110587048@qq.com> Date: Mon, 13 Feb 2023 11:15:45 +0800 Subject: [PATCH 01/11] 'tj' --- "\345\220\264\345\220\257\346\230\2141/wqqc.html" | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 "\345\220\264\345\220\257\346\230\2141/wqqc.html" diff --git "a/\345\220\264\345\220\257\346\230\2141/wqqc.html" "b/\345\220\264\345\220\257\346\230\2141/wqqc.html" new file mode 100644 index 0000000..8e3028d --- /dev/null +++ "b/\345\220\264\345\220\257\346\230\2141/wqqc.html" @@ -0,0 +1,15 @@ + + + + + + + Document + + + + + + \ No newline at end of file -- Gitee From f8c636076c07f0a5a214f0701bc23897795e3df0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C?= <3110587048@qq.com> Date: Tue, 14 Feb 2023 09:17:08 +0000 Subject: [PATCH 02/11] +-*/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 吴启昌 <3110587048@qq.com> --- .../\347\273\223\346\236\234.js" | 5 +++++ .../\350\256\241\347\256\227\345\231\250.js" | 16 ++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 "\345\220\264\345\220\257\346\230\214/\347\273\223\346\236\234.js" create mode 100644 "\345\220\264\345\220\257\346\230\214/\350\256\241\347\256\227\345\231\250.js" diff --git "a/\345\220\264\345\220\257\346\230\214/\347\273\223\346\236\234.js" "b/\345\220\264\345\220\257\346\230\214/\347\273\223\346\236\234.js" new file mode 100644 index 0000000..1f2a4ed --- /dev/null +++ "b/\345\220\264\345\220\257\346\230\214/\347\273\223\346\236\234.js" @@ -0,0 +1,5 @@ +let opp=require("./计算器"); +console.log(opp.add(12,32)); +console.log(opp.jian(58,32)); +console.log(opp.cheng(12,3)); +console.log(opp.chu(112,2)); \ No newline at end of file diff --git "a/\345\220\264\345\220\257\346\230\214/\350\256\241\347\256\227\345\231\250.js" "b/\345\220\264\345\220\257\346\230\214/\350\256\241\347\256\227\345\231\250.js" new file mode 100644 index 0000000..5293f6c --- /dev/null +++ "b/\345\220\264\345\220\257\346\230\214/\350\256\241\347\256\227\345\231\250.js" @@ -0,0 +1,16 @@ + +let wof ={ + 'add':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=wof; \ No newline at end of file -- Gitee From a4be2f2df1886d75a3c20fd1ad2371a7f49cfd8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C?= <3110587048@qq.com> Date: Tue, 14 Feb 2023 09:18:03 +0000 Subject: [PATCH 03/11] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\347\273\223\346\236\234.js" | 5 ----- .../\350\256\241\347\256\227\345\231\250.js" | 16 ---------------- 2 files changed, 21 deletions(-) delete mode 100644 "\345\220\264\345\220\257\346\230\214/\347\273\223\346\236\234.js" delete mode 100644 "\345\220\264\345\220\257\346\230\214/\350\256\241\347\256\227\345\231\250.js" diff --git "a/\345\220\264\345\220\257\346\230\214/\347\273\223\346\236\234.js" "b/\345\220\264\345\220\257\346\230\214/\347\273\223\346\236\234.js" deleted file mode 100644 index 1f2a4ed..0000000 --- "a/\345\220\264\345\220\257\346\230\214/\347\273\223\346\236\234.js" +++ /dev/null @@ -1,5 +0,0 @@ -let opp=require("./计算器"); -console.log(opp.add(12,32)); -console.log(opp.jian(58,32)); -console.log(opp.cheng(12,3)); -console.log(opp.chu(112,2)); \ No newline at end of file diff --git "a/\345\220\264\345\220\257\346\230\214/\350\256\241\347\256\227\345\231\250.js" "b/\345\220\264\345\220\257\346\230\214/\350\256\241\347\256\227\345\231\250.js" deleted file mode 100644 index 5293f6c..0000000 --- "a/\345\220\264\345\220\257\346\230\214/\350\256\241\347\256\227\345\231\250.js" +++ /dev/null @@ -1,16 +0,0 @@ - -let wof ={ - 'add':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=wof; \ No newline at end of file -- Gitee From a76e179bc2289226b625a1ee845e85758ef5530f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C?= <3110587048@qq.com> Date: Tue, 14 Feb 2023 09:18:34 +0000 Subject: [PATCH 04/11] +-*/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 吴启昌 <3110587048@qq.com> --- .../\347\273\223\346\236\234.js" | 5 +++++ .../\350\256\241\347\256\227\345\231\250.js" | 16 ++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 "\345\220\264\345\220\257\346\230\2141/\347\273\223\346\236\234.js" create mode 100644 "\345\220\264\345\220\257\346\230\2141/\350\256\241\347\256\227\345\231\250.js" diff --git "a/\345\220\264\345\220\257\346\230\2141/\347\273\223\346\236\234.js" "b/\345\220\264\345\220\257\346\230\2141/\347\273\223\346\236\234.js" new file mode 100644 index 0000000..1f2a4ed --- /dev/null +++ "b/\345\220\264\345\220\257\346\230\2141/\347\273\223\346\236\234.js" @@ -0,0 +1,5 @@ +let opp=require("./计算器"); +console.log(opp.add(12,32)); +console.log(opp.jian(58,32)); +console.log(opp.cheng(12,3)); +console.log(opp.chu(112,2)); \ No newline at end of file diff --git "a/\345\220\264\345\220\257\346\230\2141/\350\256\241\347\256\227\345\231\250.js" "b/\345\220\264\345\220\257\346\230\2141/\350\256\241\347\256\227\345\231\250.js" new file mode 100644 index 0000000..5293f6c --- /dev/null +++ "b/\345\220\264\345\220\257\346\230\2141/\350\256\241\347\256\227\345\231\250.js" @@ -0,0 +1,16 @@ + +let wof ={ + 'add':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=wof; \ No newline at end of file -- Gitee From 1aeaee84524e915b8a664c5e9a0c7ffeb0ab1364 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C?= <3110587048@qq.com> Date: Tue, 14 Feb 2023 09:19:18 +0000 Subject: [PATCH 05/11] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C1/=E7=BB=93=E6=9E=9C.js?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\347\273\223\346\236\234.js" | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 "\345\220\264\345\220\257\346\230\2141/\347\273\223\346\236\234.js" diff --git "a/\345\220\264\345\220\257\346\230\2141/\347\273\223\346\236\234.js" "b/\345\220\264\345\220\257\346\230\2141/\347\273\223\346\236\234.js" deleted file mode 100644 index 1f2a4ed..0000000 --- "a/\345\220\264\345\220\257\346\230\2141/\347\273\223\346\236\234.js" +++ /dev/null @@ -1,5 +0,0 @@ -let opp=require("./计算器"); -console.log(opp.add(12,32)); -console.log(opp.jian(58,32)); -console.log(opp.cheng(12,3)); -console.log(opp.chu(112,2)); \ No newline at end of file -- Gitee From 1ee3fd2ade14f051f04f2b19130a045b3801a560 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C?= <3110587048@qq.com> Date: Tue, 14 Feb 2023 09:19:23 +0000 Subject: [PATCH 06/11] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C1/=E8=AE=A1=E7=AE=97=E5=99=A8.js?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\350\256\241\347\256\227\345\231\250.js" | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 "\345\220\264\345\220\257\346\230\2141/\350\256\241\347\256\227\345\231\250.js" diff --git "a/\345\220\264\345\220\257\346\230\2141/\350\256\241\347\256\227\345\231\250.js" "b/\345\220\264\345\220\257\346\230\2141/\350\256\241\347\256\227\345\231\250.js" deleted file mode 100644 index 5293f6c..0000000 --- "a/\345\220\264\345\220\257\346\230\2141/\350\256\241\347\256\227\345\231\250.js" +++ /dev/null @@ -1,16 +0,0 @@ - -let wof ={ - 'add':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=wof; \ No newline at end of file -- Gitee From 7e94121c30038654afe91773aaea28ecc78705d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C?= <3110587048@qq.com> Date: Tue, 14 Feb 2023 09:19:29 +0000 Subject: [PATCH 07/11] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C1/wqqc.html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "\345\220\264\345\220\257\346\230\2141/wqqc.html" | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 "\345\220\264\345\220\257\346\230\2141/wqqc.html" diff --git "a/\345\220\264\345\220\257\346\230\2141/wqqc.html" "b/\345\220\264\345\220\257\346\230\2141/wqqc.html" deleted file mode 100644 index 8e3028d..0000000 --- "a/\345\220\264\345\220\257\346\230\2141/wqqc.html" +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Document - - - - - - \ No newline at end of file -- Gitee From bfeb33c2f6b787f4b3baca48e93782bafdf9e3e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C?= <3110587048@qq.com> Date: Tue, 14 Feb 2023 09:20:20 +0000 Subject: [PATCH 08/11] +-*/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 吴启昌 <3110587048@qq.com> --- .../\347\273\223\346\236\234.js" | 5 +++++ .../\350\256\241\347\256\227\345\231\250.js" | 16 ++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 "\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\347\273\223\346\236\234.js" create mode 100644 "\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\350\256\241\347\256\227\345\231\250.js" diff --git "a/\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\347\273\223\346\236\234.js" "b/\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\347\273\223\346\236\234.js" new file mode 100644 index 0000000..1f2a4ed --- /dev/null +++ "b/\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\347\273\223\346\236\234.js" @@ -0,0 +1,5 @@ +let opp=require("./计算器"); +console.log(opp.add(12,32)); +console.log(opp.jian(58,32)); +console.log(opp.cheng(12,3)); +console.log(opp.chu(112,2)); \ No newline at end of file diff --git "a/\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\350\256\241\347\256\227\345\231\250.js" "b/\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\350\256\241\347\256\227\345\231\250.js" new file mode 100644 index 0000000..5293f6c --- /dev/null +++ "b/\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\350\256\241\347\256\227\345\231\250.js" @@ -0,0 +1,16 @@ + +let wof ={ + 'add':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=wof; \ No newline at end of file -- Gitee From 43aca225e4a37aa9f98a12ae1e60db6ca3f2b63a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C?= <3110587048@qq.com> Date: Tue, 14 Feb 2023 09:26:54 +0000 Subject: [PATCH 09/11] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C1/=E4=BD=9C=E4=B8=9A/=E8=AE=A1?= =?UTF-8?q?=E7=AE=97=E5=99=A8.js?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\350\256\241\347\256\227\345\231\250.js" | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 "\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\350\256\241\347\256\227\345\231\250.js" diff --git "a/\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\350\256\241\347\256\227\345\231\250.js" "b/\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\350\256\241\347\256\227\345\231\250.js" deleted file mode 100644 index 5293f6c..0000000 --- "a/\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\350\256\241\347\256\227\345\231\250.js" +++ /dev/null @@ -1,16 +0,0 @@ - -let wof ={ - 'add':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=wof; \ No newline at end of file -- Gitee From 5f89dc1c041f3a0c9decfc4a4b9675a91827401e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C?= <3110587048@qq.com> Date: Tue, 14 Feb 2023 09:27:02 +0000 Subject: [PATCH 10/11] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C1/=E4=BD=9C=E4=B8=9A/=E7=BB=93?= =?UTF-8?q?=E6=9E=9C.js?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\344\275\234\344\270\232/\347\273\223\346\236\234.js" | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 "\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\347\273\223\346\236\234.js" diff --git "a/\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\347\273\223\346\236\234.js" "b/\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\347\273\223\346\236\234.js" deleted file mode 100644 index 1f2a4ed..0000000 --- "a/\345\220\264\345\220\257\346\230\2141/\344\275\234\344\270\232/\347\273\223\346\236\234.js" +++ /dev/null @@ -1,5 +0,0 @@ -let opp=require("./计算器"); -console.log(opp.add(12,32)); -console.log(opp.jian(58,32)); -console.log(opp.cheng(12,3)); -console.log(opp.chu(112,2)); \ No newline at end of file -- Gitee From 057373633b7cb217b27069bfc4ac52f4ac5bfeb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=90=AF=E6=98=8C?= <3110587048@qq.com> Date: Tue, 14 Feb 2023 09:28:06 +0000 Subject: [PATCH 11/11] +-*/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 吴启昌 <3110587048@qq.com> --- .../\347\273\223\346\236\234.js" | 5 +++++ .../\350\256\241\347\256\227\345\231\250.js" | 16 ++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 "\345\220\264\345\220\257\346\230\2141/2.14\344\275\234\344\270\232/\347\273\223\346\236\234.js" create mode 100644 "\345\220\264\345\220\257\346\230\2141/2.14\344\275\234\344\270\232/\350\256\241\347\256\227\345\231\250.js" diff --git "a/\345\220\264\345\220\257\346\230\2141/2.14\344\275\234\344\270\232/\347\273\223\346\236\234.js" "b/\345\220\264\345\220\257\346\230\2141/2.14\344\275\234\344\270\232/\347\273\223\346\236\234.js" new file mode 100644 index 0000000..1f2a4ed --- /dev/null +++ "b/\345\220\264\345\220\257\346\230\2141/2.14\344\275\234\344\270\232/\347\273\223\346\236\234.js" @@ -0,0 +1,5 @@ +let opp=require("./计算器"); +console.log(opp.add(12,32)); +console.log(opp.jian(58,32)); +console.log(opp.cheng(12,3)); +console.log(opp.chu(112,2)); \ No newline at end of file diff --git "a/\345\220\264\345\220\257\346\230\2141/2.14\344\275\234\344\270\232/\350\256\241\347\256\227\345\231\250.js" "b/\345\220\264\345\220\257\346\230\2141/2.14\344\275\234\344\270\232/\350\256\241\347\256\227\345\231\250.js" new file mode 100644 index 0000000..5293f6c --- /dev/null +++ "b/\345\220\264\345\220\257\346\230\2141/2.14\344\275\234\344\270\232/\350\256\241\347\256\227\345\231\250.js" @@ -0,0 +1,16 @@ + +let wof ={ + 'add':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=wof; \ No newline at end of file -- Gitee