diff --git "a/\351\231\210\345\207\214\350\212\235/chen.js" "b/\351\231\210\345\207\214\350\212\235/chen.js" new file mode 100644 index 0000000000000000000000000000000000000000..690620b8efdb726e1662bc53e8fbf9309a4fff9b --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/chen.js" @@ -0,0 +1 @@ +console.log("chen"); \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\347\256\227\346\225\260/\344\275\234\344\270\232/demo.js" "b/\351\231\210\345\207\214\350\212\235/\347\256\227\346\225\260/\344\275\234\344\270\232/demo.js" new file mode 100644 index 0000000000000000000000000000000000000000..8f3a8e7654d71445fe0eba1b6a2c991610b56709 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\347\256\227\346\225\260/\344\275\234\344\270\232/demo.js" @@ -0,0 +1,16 @@ +//作业:写个加减乘除的模块(尽量少写暴露,要考虑复用性),供外部使用. +let obj={ + '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=obj; \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\347\256\227\346\225\260/\344\275\234\344\270\232/demo2.js" "b/\351\231\210\345\207\214\350\212\235/\347\256\227\346\225\260/\344\275\234\344\270\232/demo2.js" new file mode 100644 index 0000000000000000000000000000000000000000..551012e2f07f8285f20767fdd996759ba5404e5d --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\347\256\227\346\225\260/\344\275\234\344\270\232/demo2.js" @@ -0,0 +1,5 @@ +let objs=require("./demo.js"); +console.log(objs.jia(5,2)); +console.log(objs.jian(15,5)); +console.log(objs.cheng(3,4)); +console.log(objs.chu(15,3)); \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/1.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/1.txt" new file mode 100644 index 0000000000000000000000000000000000000000..ff8ae77e437c8310953ff54c6c237a5b4816a8df --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/1.txt" @@ -0,0 +1 @@ +814 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/10.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/10.txt" new file mode 100644 index 0000000000000000000000000000000000000000..50ae88076af348a8f3cb426174f40415dc680115 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/10.txt" @@ -0,0 +1 @@ +714 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/100.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/100.txt" new file mode 100644 index 0000000000000000000000000000000000000000..b39356075901abfb43d27aef2ae5b76b6aee19c4 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/100.txt" @@ -0,0 +1 @@ +23 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/11.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/11.txt" new file mode 100644 index 0000000000000000000000000000000000000000..24c5507b23c0f31b724642a81eefdd7cb9f8af04 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/11.txt" @@ -0,0 +1 @@ +633 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/12.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/12.txt" new file mode 100644 index 0000000000000000000000000000000000000000..35d29653bfef16166d335bd8f1ad49a4973e5fde --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/12.txt" @@ -0,0 +1 @@ +791 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/13.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/13.txt" new file mode 100644 index 0000000000000000000000000000000000000000..37944e4094bd76b4ad8dfcfa678a7200f201a5be --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/13.txt" @@ -0,0 +1 @@ +981 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/14.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/14.txt" new file mode 100644 index 0000000000000000000000000000000000000000..fb5f8f013c9c30f6ca22ea0f56bac120d6815512 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/14.txt" @@ -0,0 +1 @@ +890 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/15.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/15.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f79f5e337ea18102bf116113d489fb73bd210e37 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/15.txt" @@ -0,0 +1 @@ +153 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/16.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/16.txt" new file mode 100644 index 0000000000000000000000000000000000000000..d7b14a6c47450ae9b84d7ccecc7de768a95042d9 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/16.txt" @@ -0,0 +1 @@ +476 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/17.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/17.txt" new file mode 100644 index 0000000000000000000000000000000000000000..3e990b743e961c843004fbca714976a274c86afd --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/17.txt" @@ -0,0 +1 @@ +541 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/18.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/18.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4e66132b50032ef4b80cd41c36efeb2353360c8c --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/18.txt" @@ -0,0 +1 @@ +282 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/19.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/19.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4d5b34789eb552e6c76f33313930efd032a52502 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/19.txt" @@ -0,0 +1 @@ +793 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/2.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/2.txt" new file mode 100644 index 0000000000000000000000000000000000000000..af718cd15fc86b6ac2f93b35aa137c4497857008 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/2.txt" @@ -0,0 +1 @@ +726 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/20.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/20.txt" new file mode 100644 index 0000000000000000000000000000000000000000..02225a563f9711d2f3a52d071d1249ed9f2dea93 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/20.txt" @@ -0,0 +1 @@ +268 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/21.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/21.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e966f9075d8ab3b93380ed202094ab60599ff1fc --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/21.txt" @@ -0,0 +1 @@ +450 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/22.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/22.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e9059e02c3dfa5428d76ae0eb634de170bea91ad --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/22.txt" @@ -0,0 +1 @@ +549 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/23.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/23.txt" new file mode 100644 index 0000000000000000000000000000000000000000..978b4e8e518d1242cbf102a1bebdb52e41705102 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/23.txt" @@ -0,0 +1 @@ +26 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/24.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/24.txt" new file mode 100644 index 0000000000000000000000000000000000000000..473995f402cba2afa276f045ef848fcbddef3b47 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/24.txt" @@ -0,0 +1 @@ +494 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/25.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/25.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c047c4aba9bb7da73243f84e689c9c15c3bd2c6e --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/25.txt" @@ -0,0 +1 @@ +518 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/26.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/26.txt" new file mode 100644 index 0000000000000000000000000000000000000000..9444b9b2e2f075ad73b8c0a81aa0e4f3b6dbbf7f --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/26.txt" @@ -0,0 +1 @@ +737 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/27.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/27.txt" new file mode 100644 index 0000000000000000000000000000000000000000..1b003ab28f1c6ab7c473de7866eb02c53161b554 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/27.txt" @@ -0,0 +1 @@ +906 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/28.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/28.txt" new file mode 100644 index 0000000000000000000000000000000000000000..0fd0714a51f10639eab0e6a0121977179a7b458a --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/28.txt" @@ -0,0 +1 @@ +103 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/29.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/29.txt" new file mode 100644 index 0000000000000000000000000000000000000000..57556596217163d44671613624be77b852f4d17f --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/29.txt" @@ -0,0 +1 @@ +163 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/3.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/3.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c021767357fc642c79b907b2283be6bedc1c8971 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/3.txt" @@ -0,0 +1 @@ +558 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/30.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/30.txt" new file mode 100644 index 0000000000000000000000000000000000000000..aabe32b8ba36036f14d7f0393abfb7afd924b613 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/30.txt" @@ -0,0 +1 @@ +874 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/31.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/31.txt" new file mode 100644 index 0000000000000000000000000000000000000000..bccf25b7889cc5f7b0cd7ba58f4b40ae15f65262 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/31.txt" @@ -0,0 +1 @@ +557 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/32.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/32.txt" new file mode 100644 index 0000000000000000000000000000000000000000..3873f56298e9d65b3d8c800247073b2ddbe22cfc --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/32.txt" @@ -0,0 +1 @@ +706 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/33.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/33.txt" new file mode 100644 index 0000000000000000000000000000000000000000..5a396e28e80321703d56c67ec21cc076b67f5d46 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/33.txt" @@ -0,0 +1 @@ +121 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/34.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/34.txt" new file mode 100644 index 0000000000000000000000000000000000000000..b1eab89dbc94ec2b1d30843dbc5a7f61343a7350 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/34.txt" @@ -0,0 +1 @@ +477 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/35.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/35.txt" new file mode 100644 index 0000000000000000000000000000000000000000..218241b57899d9e15d37bfc5097c581879b0fa37 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/35.txt" @@ -0,0 +1 @@ +966 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/36.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/36.txt" new file mode 100644 index 0000000000000000000000000000000000000000..27384974685c11f34eb44981eec6c97f035971e8 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/36.txt" @@ -0,0 +1 @@ +439 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/37.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/37.txt" new file mode 100644 index 0000000000000000000000000000000000000000..64ae959863dcac3ad1fb16033d832a15df40679c --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/37.txt" @@ -0,0 +1 @@ +546 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/38.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/38.txt" new file mode 100644 index 0000000000000000000000000000000000000000..7ada46f0a287f1b3793c08ad7c99670fa2813b67 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/38.txt" @@ -0,0 +1 @@ +970 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/39.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/39.txt" new file mode 100644 index 0000000000000000000000000000000000000000..d81f86143d7c1e82d474182cc300963299a71756 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/39.txt" @@ -0,0 +1 @@ +794 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/4.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/4.txt" new file mode 100644 index 0000000000000000000000000000000000000000..eff3954851315ae44a180cce680a290c307a0899 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/4.txt" @@ -0,0 +1 @@ +290 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/40.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/40.txt" new file mode 100644 index 0000000000000000000000000000000000000000..878b70634ad51fe4fe42bde5e0236a65ea20ad5e --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/40.txt" @@ -0,0 +1 @@ +543 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/41.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/41.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c73598001b3bfa7817fe382cc351ba36043c5739 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/41.txt" @@ -0,0 +1 @@ +863 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/42.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/42.txt" new file mode 100644 index 0000000000000000000000000000000000000000..00c98bb3ad211a42593f1edacdbda5289d16094c --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/42.txt" @@ -0,0 +1 @@ +125 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/43.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/43.txt" new file mode 100644 index 0000000000000000000000000000000000000000..b99877a597907968a7f18a0383ece82f077280a8 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/43.txt" @@ -0,0 +1 @@ +331 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/44.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/44.txt" new file mode 100644 index 0000000000000000000000000000000000000000..11758cc31471de3fb956dc3e15c485dc6366d7cb --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/44.txt" @@ -0,0 +1 @@ +909 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/45.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/45.txt" new file mode 100644 index 0000000000000000000000000000000000000000..db057cf772e890ebc873cfb478871418be419963 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/45.txt" @@ -0,0 +1 @@ +354 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/46.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/46.txt" new file mode 100644 index 0000000000000000000000000000000000000000..a540f59f28285c7848d5836124730005b529fea0 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/46.txt" @@ -0,0 +1 @@ +301 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/47.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/47.txt" new file mode 100644 index 0000000000000000000000000000000000000000..36c9eca540566a8f8e4eb6e25ae4401026671c5c --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/47.txt" @@ -0,0 +1 @@ +957 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/48.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/48.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c4fbb1cfac0ba7a86115b48a39b49daea09da15a --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/48.txt" @@ -0,0 +1 @@ +97 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/49.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/49.txt" new file mode 100644 index 0000000000000000000000000000000000000000..d21b6ea29b1029ae0afcb1ec259e56b82b3311ce --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/49.txt" @@ -0,0 +1 @@ +591 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/5.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/5.txt" new file mode 100644 index 0000000000000000000000000000000000000000..5aac26524c8e01c197717bef65b9fc335c90c47c --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/5.txt" @@ -0,0 +1 @@ +606 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/50.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/50.txt" new file mode 100644 index 0000000000000000000000000000000000000000..73623d101c44dc8d5e30c594bae377cec800fe03 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/50.txt" @@ -0,0 +1 @@ +600 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/51.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/51.txt" new file mode 100644 index 0000000000000000000000000000000000000000..d7f3668a68034370ad1e355d05f4659541b0db5e --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/51.txt" @@ -0,0 +1 @@ +98 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/52.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/52.txt" new file mode 100644 index 0000000000000000000000000000000000000000..2d73b5e3ba15b14f50c38dad75d5f05a9aa21301 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/52.txt" @@ -0,0 +1 @@ +152 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/53.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/53.txt" new file mode 100644 index 0000000000000000000000000000000000000000..dbda17fdf0528084d5e3c96218f76386d7741756 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/53.txt" @@ -0,0 +1 @@ +646 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/54.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/54.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4f95481351d9aad41571c7becdadaadb6cc1d765 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/54.txt" @@ -0,0 +1 @@ +517 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/55.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/55.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4d190201b6e91e864f97dc628f67bd9b74ac08f3 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/55.txt" @@ -0,0 +1 @@ +950 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/56.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/56.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8cef75946fe3684b594e1b7b4691a2342563cd61 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/56.txt" @@ -0,0 +1 @@ +919 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/57.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/57.txt" new file mode 100644 index 0000000000000000000000000000000000000000..b66073e9e4a1640993bf4d0f6e9e51ca33634ec0 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/57.txt" @@ -0,0 +1 @@ +586 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/58.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/58.txt" new file mode 100644 index 0000000000000000000000000000000000000000..05b9b66ffd47f842c719776133f725c506144461 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/58.txt" @@ -0,0 +1 @@ +162 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/59.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/59.txt" new file mode 100644 index 0000000000000000000000000000000000000000..51d3b0f9e1ed09bed37ad2f52babf96e8953a42f --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/59.txt" @@ -0,0 +1 @@ +617 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/6.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/6.txt" new file mode 100644 index 0000000000000000000000000000000000000000..ad12b97674aab8599595a19dec34ed7c26b1e585 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/6.txt" @@ -0,0 +1 @@ +983 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/60.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/60.txt" new file mode 100644 index 0000000000000000000000000000000000000000..64ae959863dcac3ad1fb16033d832a15df40679c --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/60.txt" @@ -0,0 +1 @@ +546 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/61.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/61.txt" new file mode 100644 index 0000000000000000000000000000000000000000..5628fa72e96ce2e8a8bb9acda2e338c4deb08e13 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/61.txt" @@ -0,0 +1 @@ +639 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/62.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/62.txt" new file mode 100644 index 0000000000000000000000000000000000000000..8ced8f781c3070a6fd98a4731f18d5fa5f3f4d3a --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/62.txt" @@ -0,0 +1 @@ +989 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/63.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/63.txt" new file mode 100644 index 0000000000000000000000000000000000000000..bccc87b80ef7af97083b3cda3f315937e89f1673 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/63.txt" @@ -0,0 +1 @@ +581 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/64.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/64.txt" new file mode 100644 index 0000000000000000000000000000000000000000..55df20881558e81441d7650cf25ca31f94137e97 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/64.txt" @@ -0,0 +1 @@ +689 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/65.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/65.txt" new file mode 100644 index 0000000000000000000000000000000000000000..f3daf1d56849a6e206559b8a8a1127beafdfe4ba --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/65.txt" @@ -0,0 +1 @@ +835 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/66.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/66.txt" new file mode 100644 index 0000000000000000000000000000000000000000..304feabdcedcee70e4d929e2dbee0a6205be7af6 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/66.txt" @@ -0,0 +1 @@ +387 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/67.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/67.txt" new file mode 100644 index 0000000000000000000000000000000000000000..ffe78b01d3481bcc070397843292a6328857d817 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/67.txt" @@ -0,0 +1 @@ +401 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/68.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/68.txt" new file mode 100644 index 0000000000000000000000000000000000000000..61721cab2ad7bf5b4e3ab9f7c30e7eb0ada86740 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/68.txt" @@ -0,0 +1 @@ +938 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/69.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/69.txt" new file mode 100644 index 0000000000000000000000000000000000000000..99bc3d518639f3433852c803ea7199085b6616cb --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/69.txt" @@ -0,0 +1 @@ +253 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/7.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/7.txt" new file mode 100644 index 0000000000000000000000000000000000000000..a88135ee830ae58b020aa07f9e641cc047f99606 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/7.txt" @@ -0,0 +1 @@ +988 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/70.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/70.txt" new file mode 100644 index 0000000000000000000000000000000000000000..2c136b29b5258dcc2e6f0574cf4950c5d0e2f5d7 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/70.txt" @@ -0,0 +1 @@ +302 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/71.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/71.txt" new file mode 100644 index 0000000000000000000000000000000000000000..6fc1e6e18c45e38dba6c96fe27ed3514edfbb064 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/71.txt" @@ -0,0 +1 @@ +178 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/72.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/72.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c9ebe1509d764f5826e3d2f71253550491a7f224 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/72.txt" @@ -0,0 +1 @@ +978 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/73.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/73.txt" new file mode 100644 index 0000000000000000000000000000000000000000..6a5426c9b3432ec4b244774a543bc6ed9b0eb575 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/73.txt" @@ -0,0 +1 @@ +474 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/74.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/74.txt" new file mode 100644 index 0000000000000000000000000000000000000000..61721cab2ad7bf5b4e3ab9f7c30e7eb0ada86740 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/74.txt" @@ -0,0 +1 @@ +938 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/75.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/75.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e57d8dfad6375289604ccfbc5edcdfd22dd7cacf --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/75.txt" @@ -0,0 +1 @@ +965 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/76.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/76.txt" new file mode 100644 index 0000000000000000000000000000000000000000..03204565ba17d9d87687ff81d9930d3683efb765 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/76.txt" @@ -0,0 +1 @@ +911 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/77.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/77.txt" new file mode 100644 index 0000000000000000000000000000000000000000..0fd0714a51f10639eab0e6a0121977179a7b458a --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/77.txt" @@ -0,0 +1 @@ +103 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/78.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/78.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4f1a32f19046cfd3b06fa1a3728d48f68b0a8ac7 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/78.txt" @@ -0,0 +1 @@ +765 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/79.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/79.txt" new file mode 100644 index 0000000000000000000000000000000000000000..00e6995f0c25eafe85dc68f518fa2a3bfd39bd26 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/79.txt" @@ -0,0 +1 @@ +720 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/8.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/8.txt" new file mode 100644 index 0000000000000000000000000000000000000000..b18fcc5ba20b46f0d2e054e2f0fe5290e5f25b14 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/8.txt" @@ -0,0 +1 @@ +535 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/80.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/80.txt" new file mode 100644 index 0000000000000000000000000000000000000000..7383593264266047971edd4d66abb1edfbe8b204 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/80.txt" @@ -0,0 +1 @@ +652 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/81.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/81.txt" new file mode 100644 index 0000000000000000000000000000000000000000..2415c065944e9ce572ac4d79cc79e621e9dee039 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/81.txt" @@ -0,0 +1 @@ +448 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/82.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/82.txt" new file mode 100644 index 0000000000000000000000000000000000000000..7a4ca1f90fdac849efe858e39da058f21ce3f675 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/82.txt" @@ -0,0 +1 @@ +806 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/83.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/83.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4f1a32f19046cfd3b06fa1a3728d48f68b0a8ac7 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/83.txt" @@ -0,0 +1 @@ +765 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/84.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/84.txt" new file mode 100644 index 0000000000000000000000000000000000000000..1c4af3a9338ac27d5f3355de8c0739fb88616201 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/84.txt" @@ -0,0 +1 @@ +972 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/85.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/85.txt" new file mode 100644 index 0000000000000000000000000000000000000000..fba8ce006f0094e3ae686eaad14c468913979de9 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/85.txt" @@ -0,0 +1 @@ +224 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/86.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/86.txt" new file mode 100644 index 0000000000000000000000000000000000000000..4800c7da68cf871d3228361b50e329df2115f8b7 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/86.txt" @@ -0,0 +1 @@ +58 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/87.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/87.txt" new file mode 100644 index 0000000000000000000000000000000000000000..6a5426c9b3432ec4b244774a543bc6ed9b0eb575 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/87.txt" @@ -0,0 +1 @@ +474 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/88.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/88.txt" new file mode 100644 index 0000000000000000000000000000000000000000..7003e7fe1fa0b91d6e034f2f7ac38f2f5989f85c --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/88.txt" @@ -0,0 +1 @@ +51 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/89.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/89.txt" new file mode 100644 index 0000000000000000000000000000000000000000..9f728587959d189de8b5dcadab2b3aec1276a169 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/89.txt" @@ -0,0 +1 @@ +88 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/9.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/9.txt" new file mode 100644 index 0000000000000000000000000000000000000000..3021b562c412b715c2a99b67e34ffaaaa0ba1e17 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/9.txt" @@ -0,0 +1 @@ +184 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/90.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/90.txt" new file mode 100644 index 0000000000000000000000000000000000000000..35d29653bfef16166d335bd8f1ad49a4973e5fde --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/90.txt" @@ -0,0 +1 @@ +791 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/91.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/91.txt" new file mode 100644 index 0000000000000000000000000000000000000000..acec591c56b473189d566d9edb659c722bcde2a2 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/91.txt" @@ -0,0 +1 @@ +674 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/92.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/92.txt" new file mode 100644 index 0000000000000000000000000000000000000000..c5b431b6cba29540b4b284840ff229bce0460886 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/92.txt" @@ -0,0 +1 @@ +50 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/93.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/93.txt" new file mode 100644 index 0000000000000000000000000000000000000000..560731b56bf1c51dd98fee4303136e403d943dab --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/93.txt" @@ -0,0 +1 @@ +490 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/94.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/94.txt" new file mode 100644 index 0000000000000000000000000000000000000000..e04c4148a6f9ea9fe09db8e80e7f760c324cc3d0 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/94.txt" @@ -0,0 +1 @@ +417 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/95.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/95.txt" new file mode 100644 index 0000000000000000000000000000000000000000..823aeb4b44b7f09e1692e625ff87d75f224be3b5 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/95.txt" @@ -0,0 +1 @@ +624 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/96.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/96.txt" new file mode 100644 index 0000000000000000000000000000000000000000..fb8a210573a155254893b7e53ff3612be28795d7 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/96.txt" @@ -0,0 +1 @@ +428 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/97.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/97.txt" new file mode 100644 index 0000000000000000000000000000000000000000..ac4213d6e97d9cfeb1d7bc8f948c06114a56de18 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/97.txt" @@ -0,0 +1 @@ +43 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/98.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/98.txt" new file mode 100644 index 0000000000000000000000000000000000000000..3fbd193e4a2dea8bb1d580e5bab0e1e586ee8686 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/98.txt" @@ -0,0 +1 @@ +106 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/99.txt" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/99.txt" new file mode 100644 index 0000000000000000000000000000000000000000..136c8cacf37562e0e40c7ee7fe9b30e214a616d1 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/99.txt" @@ -0,0 +1 @@ +342 \ No newline at end of file diff --git "a/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/node.js" "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/node.js" new file mode 100644 index 0000000000000000000000000000000000000000..943d2bd6ca4fbebb73b553ae00f6657643e77655 --- /dev/null +++ "b/\351\231\210\345\207\214\350\212\235/\351\232\217\346\234\272\346\226\207\344\273\266/node.js" @@ -0,0 +1,24 @@ +'use strict'; +var fs =require('fs'); +function a(){ + for (let i = 1; i <= 100; i++) { + fs.writeFileSync(i+".txt",Math.ceil(Math.random()*1000+1)+"")*Math.ceil(Math.random()*100+1) + + } +} + + +a(fs); +var num=null +function b(){ + + for (let i = 1; i <= 100; i++) { + var j=fs.readFileSync(i+".txt"); + num=Number(j)>num?Number(j):num; + + + } + console.log(num); + +} +b() \ No newline at end of file