diff --git "a/\346\235\250\351\221\253\344\273\252/20230214\344\275\234\344\270\232/demo.js" "b/\346\235\250\351\221\253\344\273\252/20230214\344\275\234\344\270\232/demo.js" index 792e5bfd193dfa2e1e8bf55d823c35c5d6456ec1..b6f40e72167e37a3585f85f6882b26e3e64cba1a 100644 --- "a/\346\235\250\351\221\253\344\273\252/20230214\344\275\234\344\270\232/demo.js" +++ "b/\346\235\250\351\221\253\344\273\252/20230214\344\275\234\344\270\232/demo.js" @@ -1,7 +1,7 @@ -var greet=require("./demo1"); -var a=10; -var b=5; -console.log(greet.add(a,b)); -console.log(greet.jian(a,b)); -console.log(greet.cheng(a,b)); -console.log(greet.chu(a,b)); \ No newline at end of file +let count=require("./demo1"); + +console.log(count.add('error',3)) + +console.log(count.handle(5,56,"add")); + +console.log(count.handle("error",56,"add")); \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230214\344\275\234\344\270\232/demo1.js" "b/\346\235\250\351\221\253\344\273\252/20230214\344\275\234\344\270\232/demo1.js" index 93e9a57187b4cdaaff0fc4ee6c7d1891086dfa0e..0c5f6e5810f7b72c8ac2fd3865a2769e800c63f9 100644 --- "a/\346\235\250\351\221\253\344\273\252/20230214\344\275\234\344\270\232/demo1.js" +++ "b/\346\235\250\351\221\253\344\273\252/20230214\344\275\234\344\270\232/demo1.js" @@ -1,17 +1,35 @@ -function add(a,b){ -return a+b; +let count={ + add:function(num1,num2){ + + return (num1+num2); + }, + sub:function(num1,num2){ + + return num1-num2; + }, + mul:function(num1,num2){ + + return num1*num2; + }, + div:function(num1,num2){ + //要记得判断,被除数不能为0 + return num1/num2; + }, + handle:function(num1,num2,symbal){ + if(!Number(num1)){ + console.log("num1不是数字"); + return false; + } + if(!Number(num2)){ + console.log("num2不是数字"); + return false; + } + // if(symbal=="add") return this.add(num1,num2) + //return eval("this[symbal](num1,num2)"); + return this[symbal](num1,num2); + } + } -function jian(a,b){ - return a-b; -} -function cheng(a,b){ - return a*b; -} -function chu(a,b){ - return a/b; -} -module.exports.add=add; -module.exports.jian=jian; -module.exports.cheng=cheng; -module.exports.chu=chu; + +module.exports=count \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/0.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/0.txt" new file mode 100644 index 0000000000000000000000000000000000000000..2e790af68a8c3683ef466009ea9cea14a1ee2e46 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/0.txt" @@ -0,0 +1 @@ +510 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/1.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/1.txt" new file mode 100644 index 0000000000000000000000000000000000000000..97e35041104a8d82c502ddb40b240e68f392c0d1 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/1.txt" @@ -0,0 +1 @@ +110 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/10.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/10.txt" new file mode 100644 index 0000000000000000000000000000000000000000..fc0b67d079d682cc60e69b2a0d28c4b1ccf385bf --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/10.txt" @@ -0,0 +1 @@ +774 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/11.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/11.txt" new file mode 100644 index 0000000000000000000000000000000000000000..0acdeb509ddefc9e5fcc09877e239a0863e211a9 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/11.txt" @@ -0,0 +1 @@ +216 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/12.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/12.txt" new file mode 100644 index 0000000000000000000000000000000000000000..be6652a2ab7bd0c8450fb25bd74ece961efb90bb --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/12.txt" @@ -0,0 +1 @@ +415 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/13.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/13.txt" new file mode 100644 index 0000000000000000000000000000000000000000..87d78b292a2cd276be148291b1418e5637d7bcc7 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/13.txt" @@ -0,0 +1 @@ +322 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/14.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/14.txt" new file mode 100644 index 0000000000000000000000000000000000000000..37e6f1741c6beff28585046f1038d9f2377b9514 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/14.txt" @@ -0,0 +1 @@ +515 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/15.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/15.txt" new file mode 100644 index 0000000000000000000000000000000000000000..2415c065944e9ce572ac4d79cc79e621e9dee039 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/15.txt" @@ -0,0 +1 @@ +448 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/16.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/16.txt" new file mode 100644 index 0000000000000000000000000000000000000000..089447802b66378c3fbf117a467bbb4e306c6a55 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/16.txt" @@ -0,0 +1 @@ +798 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/17.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/17.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e25083957df158256c00cacc73de6051af19ddd8 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/17.txt" @@ -0,0 +1 @@ +618 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/18.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/18.txt" new file mode 100644 index 0000000000000000000000000000000000000000..495ae252f0ccba7cb30f39a2737131a2734406b6 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/18.txt" @@ -0,0 +1 @@ +464 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/19.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/19.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c31da8b3c449ed1fb8c6e37d77083f8a82d74e4a --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/19.txt" @@ -0,0 +1 @@ +804 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/2.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/2.txt" new file mode 100644 index 0000000000000000000000000000000000000000..acec591c56b473189d566d9edb659c722bcde2a2 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/2.txt" @@ -0,0 +1 @@ +674 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/20.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/20.txt" new file mode 100644 index 0000000000000000000000000000000000000000..0bd049a9634083bb649713736462c9db8aeb8228 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/20.txt" @@ -0,0 +1 @@ +682 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/21.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/21.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c0d6976f6b2c443c848629a9f6e5fcb8337bd30d --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/21.txt" @@ -0,0 +1 @@ +314 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/22.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/22.txt" new file mode 100644 index 0000000000000000000000000000000000000000..aa92725341cfdd96ebd08910d54dcb6933dd5be5 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/22.txt" @@ -0,0 +1 @@ +76 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/23.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/23.txt" new file mode 100644 index 0000000000000000000000000000000000000000..96e4f13f4822a502488b9e217014121e14bb0cfb --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/23.txt" @@ -0,0 +1 @@ +766 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/24.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/24.txt" new file mode 100644 index 0000000000000000000000000000000000000000..6242099cf10f453092749dcfb486d9b910101d9e --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/24.txt" @@ -0,0 +1 @@ +992 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/25.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/25.txt" new file mode 100644 index 0000000000000000000000000000000000000000..2cda7945ff0a2e91f9c61f6c22529ba262a076e5 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/25.txt" @@ -0,0 +1 @@ +852 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/26.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/26.txt" new file mode 100644 index 0000000000000000000000000000000000000000..19c7bdba7b1e9bfe80365a50420a6d538ca503c3 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/26.txt" @@ -0,0 +1 @@ +16 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/27.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/27.txt" new file mode 100644 index 0000000000000000000000000000000000000000..d7f3668a68034370ad1e355d05f4659541b0db5e --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/27.txt" @@ -0,0 +1 @@ +98 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/28.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/28.txt" new file mode 100644 index 0000000000000000000000000000000000000000..bb18bf4e49c3c215b2cf4bd889567ccb0eb1c11e --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/28.txt" @@ -0,0 +1 @@ +939 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/29.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/29.txt" new file mode 100644 index 0000000000000000000000000000000000000000..81574ddd4813d5ceb496601af3821dde4c334f42 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/29.txt" @@ -0,0 +1 @@ +960 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/3.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/3.txt" new file mode 100644 index 0000000000000000000000000000000000000000..b7f636c12f2d1e46ea0e18d8812c2e573721f5f8 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/3.txt" @@ -0,0 +1 @@ +665 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/30.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/30.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c04091d820b33abba9eddf8c08de3e91f52478c3 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/30.txt" @@ -0,0 +1 @@ +790 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/31.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/31.txt" new file mode 100644 index 0000000000000000000000000000000000000000..3be613f062adb15df6bc72b05b935dd8eb81581e --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/31.txt" @@ -0,0 +1 @@ +614 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/32.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/32.txt" new file mode 100644 index 0000000000000000000000000000000000000000..fb32aea383e655b7d4efaaa01ce7f262de6bea83 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/32.txt" @@ -0,0 +1 @@ +296 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/33.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/33.txt" new file mode 100644 index 0000000000000000000000000000000000000000..64a0b71f19182e8b06f8eb147d6d6d7511786766 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/33.txt" @@ -0,0 +1 @@ +746 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/34.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/34.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8d0003f4668834ef1138cf7df42f663fce94ead0 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/34.txt" @@ -0,0 +1 @@ +245 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/35.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/35.txt" new file mode 100644 index 0000000000000000000000000000000000000000..cb856a47cbb8df9101794f4d23ff4f91c393ba7d --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/35.txt" @@ -0,0 +1 @@ +444 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/36.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/36.txt" new file mode 100644 index 0000000000000000000000000000000000000000..eebd1d10b6ec9917baf4df7f2e3de79e031a9af7 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/36.txt" @@ -0,0 +1 @@ +61 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/37.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/37.txt" new file mode 100644 index 0000000000000000000000000000000000000000..b322bede211b6ae3ad1e4a973e2f24879d15ddaf --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/37.txt" @@ -0,0 +1 @@ +729 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/38.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/38.txt" new file mode 100644 index 0000000000000000000000000000000000000000..2a14d60899b5ce63b22aa762057236cb35531a10 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/38.txt" @@ -0,0 +1 @@ +270 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/39.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/39.txt" new file mode 100644 index 0000000000000000000000000000000000000000..95738485793d46fac341b01b1f8f9468b4df0dd1 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/39.txt" @@ -0,0 +1 @@ +326 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/4.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/4.txt" new file mode 100644 index 0000000000000000000000000000000000000000..565f1b06a1a6a367321480dffb082fb8709a4f31 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/4.txt" @@ -0,0 +1 @@ +231 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/40.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/40.txt" new file mode 100644 index 0000000000000000000000000000000000000000..cd004727f2441a8c967a228d81b0bee1895a2597 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/40.txt" @@ -0,0 +1 @@ +182 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/41.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/41.txt" new file mode 100644 index 0000000000000000000000000000000000000000..615be700b9ed77138f08e9c23ae57fe96058c3ef --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/41.txt" @@ -0,0 +1 @@ +85 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/42.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/42.txt" new file mode 100644 index 0000000000000000000000000000000000000000..24f98f2d5fb8311ccc59a49e9e719fc208441f53 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/42.txt" @@ -0,0 +1 @@ +367 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/43.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/43.txt" new file mode 100644 index 0000000000000000000000000000000000000000..87d78b292a2cd276be148291b1418e5637d7bcc7 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/43.txt" @@ -0,0 +1 @@ +322 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/44.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/44.txt" new file mode 100644 index 0000000000000000000000000000000000000000..6e1d38407b40a9a44c42f3098cc36be86e179627 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/44.txt" @@ -0,0 +1 @@ +687 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/45.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/45.txt" new file mode 100644 index 0000000000000000000000000000000000000000..551f8ca3741888943950cd46ff62c222e4452aba --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/45.txt" @@ -0,0 +1 @@ +562 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/46.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/46.txt" new file mode 100644 index 0000000000000000000000000000000000000000..1fb8d9e69e69176dcaf94f76f644aa67d53a7995 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/46.txt" @@ -0,0 +1 @@ +601 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/47.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/47.txt" new file mode 100644 index 0000000000000000000000000000000000000000..cd6be3717d12a0f79cc3c0e79637bc8adde60362 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/47.txt" @@ -0,0 +1 @@ +888 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/48.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/48.txt" new file mode 100644 index 0000000000000000000000000000000000000000..7383593264266047971edd4d66abb1edfbe8b204 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/48.txt" @@ -0,0 +1 @@ +652 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/49.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/49.txt" new file mode 100644 index 0000000000000000000000000000000000000000..20f3ba5854e8d64eeaaf3ec9e70bda106317866f --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/49.txt" @@ -0,0 +1 @@ +710 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/5.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/5.txt" new file mode 100644 index 0000000000000000000000000000000000000000..d81f86143d7c1e82d474182cc300963299a71756 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/5.txt" @@ -0,0 +1 @@ +794 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/50.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/50.txt" new file mode 100644 index 0000000000000000000000000000000000000000..64a0b71f19182e8b06f8eb147d6d6d7511786766 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/50.txt" @@ -0,0 +1 @@ +746 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/51.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/51.txt" new file mode 100644 index 0000000000000000000000000000000000000000..7bed0227374ae83cc50da61fd773b5770ea2c733 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/51.txt" @@ -0,0 +1 @@ +828 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/52.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/52.txt" new file mode 100644 index 0000000000000000000000000000000000000000..9a32da2184a9da10be910a27ac2c91bd8492400c --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/52.txt" @@ -0,0 +1 @@ +984 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/53.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/53.txt" new file mode 100644 index 0000000000000000000000000000000000000000..3f986b9191e0e52d248f98dfac53523d66f88067 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/53.txt" @@ -0,0 +1 @@ +842 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/54.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/54.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4c009fb2fb4ac259990d1c18054f58bfd246f37f --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/54.txt" @@ -0,0 +1 @@ +206 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/55.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/55.txt" new file mode 100644 index 0000000000000000000000000000000000000000..af2132305d02d9a2bd40d240aba087a616dc79bf --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/55.txt" @@ -0,0 +1 @@ +133 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/56.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/56.txt" new file mode 100644 index 0000000000000000000000000000000000000000..cd004727f2441a8c967a228d81b0bee1895a2597 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/56.txt" @@ -0,0 +1 @@ +182 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/57.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/57.txt" new file mode 100644 index 0000000000000000000000000000000000000000..52f6c1a7a0e6648b65c77f6cfff32f6b5034ee55 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/57.txt" @@ -0,0 +1 @@ +352 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/58.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/58.txt" new file mode 100644 index 0000000000000000000000000000000000000000..022e7e6ca79f8a447d3dd426089348521ccb7e0c --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/58.txt" @@ -0,0 +1 @@ +288 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/59.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/59.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4b6f9c39e5c757bf387d465c53026b336dd8b96c --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/59.txt" @@ -0,0 +1 @@ +64 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/6.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/6.txt" new file mode 100644 index 0000000000000000000000000000000000000000..00e6995f0c25eafe85dc68f518fa2a3bfd39bd26 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/6.txt" @@ -0,0 +1 @@ +720 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/60.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/60.txt" new file mode 100644 index 0000000000000000000000000000000000000000..6dca33d41f092e39af58b262a1918435937931dd --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/60.txt" @@ -0,0 +1 @@ +742 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/61.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/61.txt" new file mode 100644 index 0000000000000000000000000000000000000000..fca7fbef0e3e82105ad15b6f5f6850d017cb09a9 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/61.txt" @@ -0,0 +1 @@ +223 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/62.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/62.txt" new file mode 100644 index 0000000000000000000000000000000000000000..11758cc31471de3fb956dc3e15c485dc6366d7cb --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/62.txt" @@ -0,0 +1 @@ +909 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/63.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/63.txt" new file mode 100644 index 0000000000000000000000000000000000000000..499121066036ae5c63b283206688fa216a6619b4 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/63.txt" @@ -0,0 +1 @@ +451 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/64.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/64.txt" new file mode 100644 index 0000000000000000000000000000000000000000..1b6db1e863409a497858c5f6d73e1b7e48838b92 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/64.txt" @@ -0,0 +1 @@ +460 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/65.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/65.txt" new file mode 100644 index 0000000000000000000000000000000000000000..b697ae4122fcdfdbac82d12992705514b0f2cb07 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/65.txt" @@ -0,0 +1 @@ +635 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/66.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/66.txt" new file mode 100644 index 0000000000000000000000000000000000000000..560731b56bf1c51dd98fee4303136e403d943dab --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/66.txt" @@ -0,0 +1 @@ +490 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/67.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/67.txt" new file mode 100644 index 0000000000000000000000000000000000000000..62f9457511f879886bb7728c986fe10b0ece6bcb --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/67.txt" @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/68.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/68.txt" new file mode 100644 index 0000000000000000000000000000000000000000..61f9147fdcaa2af189830f4ea1ac5f9c552cd4f3 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/68.txt" @@ -0,0 +1 @@ +275 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/69.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/69.txt" new file mode 100644 index 0000000000000000000000000000000000000000..3879e48b523c8ecd6fa81a86ff7d05d485d0516d --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/69.txt" @@ -0,0 +1 @@ +753 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/7.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/7.txt" new file mode 100644 index 0000000000000000000000000000000000000000..5f7b1b0513963d243e2c08a1bcf9ec14909cbeaf --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/7.txt" @@ -0,0 +1 @@ +399 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/70.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/70.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c96148db169d30a9bff5de8d4367518b410f0947 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/70.txt" @@ -0,0 +1 @@ +870 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/71.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/71.txt" new file mode 100644 index 0000000000000000000000000000000000000000..1fb8d9e69e69176dcaf94f76f644aa67d53a7995 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/71.txt" @@ -0,0 +1 @@ +601 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/72.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/72.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c390b4cff15f60e3c7c12561c444c6f029cb8ef2 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/72.txt" @@ -0,0 +1 @@ +261 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/73.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/73.txt" new file mode 100644 index 0000000000000000000000000000000000000000..a9ba1259cffcec623e16c1da4d1a05e47aad1015 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/73.txt" @@ -0,0 +1 @@ +607 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/74.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/74.txt" new file mode 100644 index 0000000000000000000000000000000000000000..773855c9134819580181947087b9b794043f3ae8 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/74.txt" @@ -0,0 +1 @@ +810 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/75.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/75.txt" new file mode 100644 index 0000000000000000000000000000000000000000..3873f56298e9d65b3d8c800247073b2ddbe22cfc --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/75.txt" @@ -0,0 +1 @@ +706 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/76.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/76.txt" new file mode 100644 index 0000000000000000000000000000000000000000..773855c9134819580181947087b9b794043f3ae8 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/76.txt" @@ -0,0 +1 @@ +810 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/77.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/77.txt" new file mode 100644 index 0000000000000000000000000000000000000000..475fbacb43f1e37932f5cd9aa9ba871e283891c2 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/77.txt" @@ -0,0 +1 @@ +763 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/78.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/78.txt" new file mode 100644 index 0000000000000000000000000000000000000000..df2d2b6cee7f8de8a6bd944613e831192e343399 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/78.txt" @@ -0,0 +1 @@ +497 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/79.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/79.txt" new file mode 100644 index 0000000000000000000000000000000000000000..9301519f58a7573c1954a0a8936f8c1038137e5b --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/79.txt" @@ -0,0 +1 @@ +483 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/8.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/8.txt" new file mode 100644 index 0000000000000000000000000000000000000000..89a16a7ddc3b772d81302efaab91722efa3e1429 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/8.txt" @@ -0,0 +1 @@ +172 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/80.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/80.txt" new file mode 100644 index 0000000000000000000000000000000000000000..efee1f88bb8fecf9af959805925bca35285f1712 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/80.txt" @@ -0,0 +1 @@ +78 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/81.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/81.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c9c41087e2102d5af5f3ea8aa420e47ad3085707 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/81.txt" @@ -0,0 +1 @@ +114 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/82.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/82.txt" new file mode 100644 index 0000000000000000000000000000000000000000..acec591c56b473189d566d9edb659c722bcde2a2 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/82.txt" @@ -0,0 +1 @@ +674 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/83.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/83.txt" new file mode 100644 index 0000000000000000000000000000000000000000..1c8a8a857f1fc07543ee629ad400094cf320949e --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/83.txt" @@ -0,0 +1 @@ +932 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/84.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/84.txt" new file mode 100644 index 0000000000000000000000000000000000000000..5be040fc33117d9056d5b46f38d9cea31753a3bd --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/84.txt" @@ -0,0 +1 @@ +808 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/85.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/85.txt" new file mode 100644 index 0000000000000000000000000000000000000000..6547e41559f1adeb64e16d6027efdac6619b1bd2 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/85.txt" @@ -0,0 +1 @@ +171 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/86.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/86.txt" new file mode 100644 index 0000000000000000000000000000000000000000..9f728587959d189de8b5dcadab2b3aec1276a169 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/86.txt" @@ -0,0 +1 @@ +88 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/87.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/87.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c021767357fc642c79b907b2283be6bedc1c8971 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/87.txt" @@ -0,0 +1 @@ +558 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/88.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/88.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4f723a9099d9f992e0be081dc9d8cb08eb1385d3 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/88.txt" @@ -0,0 +1 @@ +610 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/89.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/89.txt" new file mode 100644 index 0000000000000000000000000000000000000000..96e4f13f4822a502488b9e217014121e14bb0cfb --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/89.txt" @@ -0,0 +1 @@ +766 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/9.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/9.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e1f27603b67cf0f499c57323674beccfac4e31e7 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/9.txt" @@ -0,0 +1 @@ +613 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/90.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/90.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8f32b0ba57fc0dafdd620da9e4ce01179920cb20 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/90.txt" @@ -0,0 +1 @@ +969 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/91.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/91.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c5316a94dd8abdc43d79e0273243abf33a91a96c --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/91.txt" @@ -0,0 +1 @@ +848 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/92.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/92.txt" new file mode 100644 index 0000000000000000000000000000000000000000..1199cd493e5b0f7c20b1040406896a3f2004c700 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/92.txt" @@ -0,0 +1 @@ +219 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/93.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/93.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8306ec157b98723c6204c6395c9bce44649681f6 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/93.txt" @@ -0,0 +1 @@ +130 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/94.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/94.txt" new file mode 100644 index 0000000000000000000000000000000000000000..397787a80effcf1e243fd9a6ec9a3aa3ea7d9922 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/94.txt" @@ -0,0 +1 @@ +949 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/95.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/95.txt" new file mode 100644 index 0000000000000000000000000000000000000000..009bd2c17f2ddaf16118b7026a6a0697abb66f71 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/95.txt" @@ -0,0 +1 @@ +407 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/96.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/96.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4f1a32f19046cfd3b06fa1a3728d48f68b0a8ac7 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/96.txt" @@ -0,0 +1 @@ +765 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/97.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/97.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f11c82a4cb6cc2e8f3bdf52b5cdeaad4d5bb214e --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/97.txt" @@ -0,0 +1 @@ +9 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/98.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/98.txt" new file mode 100644 index 0000000000000000000000000000000000000000..9e6181a6edf278d8fe3d626196e7a67223fae140 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/98.txt" @@ -0,0 +1 @@ +285 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/99.txt" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/99.txt" new file mode 100644 index 0000000000000000000000000000000000000000..d7b14a6c47450ae9b84d7ccecc7de768a95042d9 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/files/99.txt" @@ -0,0 +1 @@ +476 \ No newline at end of file diff --git "a/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/homework.js" "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/homework.js" new file mode 100644 index 0000000000000000000000000000000000000000..1983defa5c695e79332d1ccc96531d0a9051f6e1 --- /dev/null +++ "b/\346\235\250\351\221\253\344\273\252/20230216\344\275\234\344\270\232/homework.js" @@ -0,0 +1,39 @@ +let fs = require("fs"); + +let fileHandel = { + //创建文件 + createFile: function (fileName, content) { + fs.writeFileSync(fileName, content); + }, + //创建随机数字 + createRandom: function (maxNum) { + return (Math.round(Math.random() * maxNum) + 1); + }, + //读取文件 + readFile: function (filePath) { + let result = fs.readFileSync(filePath); + return result.toString(); + }, + init: function () { + //创建文件 + for (let i = 0; i < 100; i++) { + let fileName = "./files/" + i + ".txt"; + let num = this.createRandom(1000) + this.createFile(fileName, num + ""); + } + let maxNum = 0; + let name=""; + //读取内容 + for (let j = 0; j < 100; j++) { + let fileName = "./files/" + j + ".txt"; + let content = this.readFile(fileName); + if (maxNum < Number(content)) { + maxNum = Number(content); + name = fileName; + } + } + console.log(maxNum,name); + } +} + +fileHandel.init(); \ No newline at end of file