111 当前离线
一级士官
@echo off&setlocal enabledelayedexpansion if exist 书库\ goto start md 书库 attrib 书库 +s +h echo [.ShellClassInfo]>书库\desktop.ini echo CLSID={21EC2020-3AEA-1069-A2DD-08002B30309D}>>书库\desktop.ini attrib 书库\desktop.ini +s +h +r :once mode con: cols=30 lines=4 echo. goto pwd :pwd0 cls echo. echo 两次输入密码不一致,请重新输入 echo. :pwd set /p pwd= 请设置密码: if '%pwd%'=='' goto pwd set /p pwd0= 请再输一次: if not '%pwd%'=='%pwd0%' goto pwd0 echo %pwd%>书库\pwd.lnk attrib 书库\pwd.lnk +s +h echo. echo 密码设置成功 ping 127.1 -n 3 >nul 2>nul goto menu :start mode con: cols=30 lines=4 if not exist 书库\pwd.lnk goto once for /f "tokens=*" %%a in (书库\pwd.lnk) do set mima=%%a :kaishi echo. set pass= set /p pass= 请输入进入密码: :kaishihou if '%pass%'=='' goto kaishi if '%pass%'=='%mima%' goto menu cls echo. echo 对不起,密码错误!请重新输入! goto kaishi :menu cls mode con lines=25 cols=30 set tit=图书管理系统 title %tit%——主页 echo. echo. echo %tit% echo. echo 1、借书 echo. echo 2、还书 echo. echo 3、增加新书 echo. echo 4、增加用户 echo. echo 5、查看用户 echo. echo 6、查看图书 echo. echo 7、退出 echo. set input= set /p input= 请输入代号[1~7]: if '%input%'=='' goto menu if '%input%'=='1' goto js if '%input%'=='2' goto hs if '%input%'=='3' goto zj if '%input%'=='4' goto yh if '%input%'=='5' goto ck if '%input%'=='6' goto ts if '%input%'=='7' exit :js cls mode con lines=20 cols=30 title %tit%——借书 goto menu :hs mode con lines=20 cols=30 title %tit%——还书 goto menu :zj mode con lines=20 cols=30 title %tit%——增加新书 goto menu :yh mode con lines=20 cols=30 title %tit%——增加用户 goto menu :ck mode con lines=20 cols=30 title %tit%——查看用户 goto menu :ts mode con lines=20 cols=30 title %tit%——查看图书 goto menu复制代码
bailong360 (zhonghua)当前离线
上尉
TOP