From ee8dd0f81dc19af04995d7abab69fd49d1a06cf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E5=AF=8C=E9=92=B0?= <1535257254@qq.com> Date: Mon, 13 Feb 2023 16:53:49 +0800 Subject: [PATCH 1/9] dfy --- .../\351\202\223\345\257\214\351\222\260.txt" | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename cxy.txt => "\351\202\223\345\257\214\351\222\260/\351\202\223\345\257\214\351\222\260.txt" (100%) diff --git a/cxy.txt "b/\351\202\223\345\257\214\351\222\260/\351\202\223\345\257\214\351\222\260.txt" similarity index 100% rename from cxy.txt rename to "\351\202\223\345\257\214\351\222\260/\351\202\223\345\257\214\351\222\260.txt" -- Gitee From ca2693ae1830d9da0b629ffb6e62787e063e07dc Mon Sep 17 00:00:00 2001 From: unknown <1535257254@qq.com> Date: Thu, 16 Feb 2023 12:38:40 +0800 Subject: [PATCH 2/9] =?UTF-8?q?=E9=82=93=E5=AF=8C=E9=92=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../20230215/dfy.js" | 38 +++++++++++++++++++ .../20230215/zuoye.js" | 5 +++ 2 files changed, 43 insertions(+) create mode 100644 "\351\202\223\345\257\214\351\222\260/20230215/dfy.js" create mode 100644 "\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" diff --git "a/\351\202\223\345\257\214\351\222\260/20230215/dfy.js" "b/\351\202\223\345\257\214\351\222\260/20230215/dfy.js" new file mode 100644 index 0000000..a328f40 --- /dev/null +++ "b/\351\202\223\345\257\214\351\222\260/20230215/dfy.js" @@ -0,0 +1,38 @@ +var num; +let obj = { + add:function(a,b){ + if(Number(a) && Number(b)){ + num=a+b; + return num; + }else{ + console.log("请输入数字") + } + + }, + jian:function(a,b){ + if(Number(a) && Number(b)){ + num=a-b; + return num; + }else{ + console.log("请输入数字") + } + }, + cheng:function(a,b){ + if(Number(a) && Number(b)){ + num=a*b; + return num; + }else{ + console.log("请输入数字") + } + }, + chu:function(a,b){ + if(Number(a) && Number(b) && a!=0){ + num=a/b; + return num; + }else{ + console.log("请输入数字且除数不能为0") + } + } +} +// 暴露 +module.exports =obj; diff --git "a/\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" "b/\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" new file mode 100644 index 0000000..7277dc9 --- /dev/null +++ "b/\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" @@ -0,0 +1,5 @@ +var obj = require('./dfy.js') +console.log(obj.add(1,2)) +console.log(obj.subtract(5,1)) +console.log(obj. multiply (2,5)) +console.log(obj.divide(10,5)) -- Gitee From 0daa1ce0e0b9c22ea96a124ee18d268e6f7ed5c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E5=AF=8C=E9=92=B0?= <1535257254@qq.com> Date: Thu, 16 Feb 2023 06:46:33 +0000 Subject: [PATCH 3/9] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E9=82=93=E5=AF=8C=E9=92=B0/20230215?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../20230215/dfy.js" | 38 ------------------- .../20230215/zuoye.js" | 5 --- 2 files changed, 43 deletions(-) delete mode 100644 "\351\202\223\345\257\214\351\222\260/20230215/dfy.js" delete mode 100644 "\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" diff --git "a/\351\202\223\345\257\214\351\222\260/20230215/dfy.js" "b/\351\202\223\345\257\214\351\222\260/20230215/dfy.js" deleted file mode 100644 index a328f40..0000000 --- "a/\351\202\223\345\257\214\351\222\260/20230215/dfy.js" +++ /dev/null @@ -1,38 +0,0 @@ -var num; -let obj = { - add:function(a,b){ - if(Number(a) && Number(b)){ - num=a+b; - return num; - }else{ - console.log("请输入数字") - } - - }, - jian:function(a,b){ - if(Number(a) && Number(b)){ - num=a-b; - return num; - }else{ - console.log("请输入数字") - } - }, - cheng:function(a,b){ - if(Number(a) && Number(b)){ - num=a*b; - return num; - }else{ - console.log("请输入数字") - } - }, - chu:function(a,b){ - if(Number(a) && Number(b) && a!=0){ - num=a/b; - return num; - }else{ - console.log("请输入数字且除数不能为0") - } - } -} -// 暴露 -module.exports =obj; diff --git "a/\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" "b/\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" deleted file mode 100644 index 7277dc9..0000000 --- "a/\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" +++ /dev/null @@ -1,5 +0,0 @@ -var obj = require('./dfy.js') -console.log(obj.add(1,2)) -console.log(obj.subtract(5,1)) -console.log(obj. multiply (2,5)) -console.log(obj.divide(10,5)) -- Gitee From f8275077fc1f17b35532664d0cfec4ceec209a8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E5=AF=8C=E9=92=B0?= <1535257254@qq.com> Date: Thu, 16 Feb 2023 06:46:38 +0000 Subject: [PATCH 4/9] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E9=82=93=E5=AF=8C=E9=92=B0/=E9=82=93=E5=AF=8C=E9=92=B0.txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\351\202\223\345\257\214\351\222\260.txt" | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 "\351\202\223\345\257\214\351\222\260/\351\202\223\345\257\214\351\222\260.txt" diff --git "a/\351\202\223\345\257\214\351\222\260/\351\202\223\345\257\214\351\222\260.txt" "b/\351\202\223\345\257\214\351\222\260/\351\202\223\345\257\214\351\222\260.txt" deleted file mode 100644 index e69de29..0000000 -- Gitee From fd629045cadb505db11c60e7ecd3710d19fab4c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E5=AF=8C=E9=92=B0?= <1535257254@qq.com> Date: Thu, 16 Feb 2023 14:49:17 +0800 Subject: [PATCH 5/9] 20230215 --- .../20230215/dfy.js" | 38 +++++++++++++++++++ .../20230215/zuoye.js" | 5 +++ 2 files changed, 43 insertions(+) create mode 100644 "\351\202\223\345\257\214\351\222\260/20230215/dfy.js" create mode 100644 "\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" diff --git "a/\351\202\223\345\257\214\351\222\260/20230215/dfy.js" "b/\351\202\223\345\257\214\351\222\260/20230215/dfy.js" new file mode 100644 index 0000000..a328f40 --- /dev/null +++ "b/\351\202\223\345\257\214\351\222\260/20230215/dfy.js" @@ -0,0 +1,38 @@ +var num; +let obj = { + add:function(a,b){ + if(Number(a) && Number(b)){ + num=a+b; + return num; + }else{ + console.log("请输入数字") + } + + }, + jian:function(a,b){ + if(Number(a) && Number(b)){ + num=a-b; + return num; + }else{ + console.log("请输入数字") + } + }, + cheng:function(a,b){ + if(Number(a) && Number(b)){ + num=a*b; + return num; + }else{ + console.log("请输入数字") + } + }, + chu:function(a,b){ + if(Number(a) && Number(b) && a!=0){ + num=a/b; + return num; + }else{ + console.log("请输入数字且除数不能为0") + } + } +} +// 暴露 +module.exports =obj; diff --git "a/\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" "b/\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" new file mode 100644 index 0000000..7277dc9 --- /dev/null +++ "b/\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" @@ -0,0 +1,5 @@ +var obj = require('./dfy.js') +console.log(obj.add(1,2)) +console.log(obj.subtract(5,1)) +console.log(obj. multiply (2,5)) +console.log(obj.divide(10,5)) -- Gitee From b0989183d8374eb717bc7031989c9d8bf5da444d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E5=AF=8C=E9=92=B0?= <1535257254@qq.com> Date: Thu, 16 Feb 2023 08:56:02 +0000 Subject: [PATCH 6/9] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20?= =?UTF-8?q?=E7=8E=8B=E9=80=B8=E6=B0=91/=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\346\250\241\345\235\227/index.html" | 14 -------------- .../\346\250\241\345\235\227/jsq.js" | 8 -------- .../\346\250\241\345\235\227/shuzhi.js" | 3 --- 3 files changed, 25 deletions(-) delete mode 100644 "\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/index.html" delete mode 100644 "\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/jsq.js" delete mode 100644 "\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/shuzhi.js" diff --git "a/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/index.html" "b/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/index.html" deleted file mode 100644 index b2ec421..0000000 --- "a/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/index.html" +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - Document - - - - - - - \ No newline at end of file diff --git "a/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/jsq.js" "b/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/jsq.js" deleted file mode 100644 index 9304e33..0000000 --- "a/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/jsq.js" +++ /dev/null @@ -1,8 +0,0 @@ -let obj={ - jia :function jia(shu1,shu2){ - return shu1+shu2; - } -} - - -module.exports = obj; \ No newline at end of file diff --git "a/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/shuzhi.js" "b/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/shuzhi.js" deleted file mode 100644 index b45016a..0000000 --- "a/\347\216\213\351\200\270\346\260\221/\346\250\241\345\235\227/shuzhi.js" +++ /dev/null @@ -1,3 +0,0 @@ -let obj= require("./jsq.js"); - -console.log(obj.jia(10,20)); \ No newline at end of file -- Gitee From a06f5cfe589c5246a3123338d28a895744884725 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E5=AF=8C=E9=92=B0?= <1535257254@qq.com> Date: Thu, 16 Feb 2023 08:56:09 +0000 Subject: [PATCH 7/9] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20k.tx?= =?UTF-8?q?t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- k.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 k.txt diff --git a/k.txt b/k.txt deleted file mode 100644 index e69de29..0000000 -- Gitee From ec73306e8e0cb92e7abd466bc1ac04e53cbf8e95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E5=AF=8C=E9=92=B0?= <1535257254@qq.com> Date: Thu, 16 Feb 2023 08:56:16 +0000 Subject: [PATCH 8/9] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20wym?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wym/wish.html | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 wym/wish.html diff --git a/wym/wish.html b/wym/wish.html deleted file mode 100644 index 8fd0b0f..0000000 --- a/wym/wish.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - 要工作了 - - -

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

- - \ No newline at end of file -- Gitee From 1138c49187264810d29efd8f64326f3f326bbc30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E5=AF=8C=E9=92=B0?= <1535257254@qq.com> Date: Mon, 20 Feb 2023 07:59:00 +0000 Subject: [PATCH 9/9] =?UTF-8?q?=E9=87=8D=E5=91=BD=E5=90=8D=20=E9=82=93?= =?UTF-8?q?=E5=AF=8C=E9=92=B0/20230215=20=E4=B8=BA=20=E9=82=93=E5=AF=8C?= =?UTF-8?q?=E9=92=B0/=E6=A8=A1=E5=9D=97=E4=BD=9C=E4=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\346\250\241\345\235\227\344\275\234\344\270\232/dfy.js" | 0 .../\346\250\241\345\235\227\344\275\234\344\270\232/zuoye.js" | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename "\351\202\223\345\257\214\351\222\260/20230215/dfy.js" => "\351\202\223\345\257\214\351\222\260/\346\250\241\345\235\227\344\275\234\344\270\232/dfy.js" (100%) rename "\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" => "\351\202\223\345\257\214\351\222\260/\346\250\241\345\235\227\344\275\234\344\270\232/zuoye.js" (100%) diff --git "a/\351\202\223\345\257\214\351\222\260/20230215/dfy.js" "b/\351\202\223\345\257\214\351\222\260/\346\250\241\345\235\227\344\275\234\344\270\232/dfy.js" similarity index 100% rename from "\351\202\223\345\257\214\351\222\260/20230215/dfy.js" rename to "\351\202\223\345\257\214\351\222\260/\346\250\241\345\235\227\344\275\234\344\270\232/dfy.js" diff --git "a/\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" "b/\351\202\223\345\257\214\351\222\260/\346\250\241\345\235\227\344\275\234\344\270\232/zuoye.js" similarity index 100% rename from "\351\202\223\345\257\214\351\222\260/20230215/zuoye.js" rename to "\351\202\223\345\257\214\351\222\260/\346\250\241\345\235\227\344\275\234\344\270\232/zuoye.js" -- Gitee