登录
首页 » 汇编语言 » 用8086汇编语言设计一存取款小软件系统。要求进入系统后,屏幕上显示“欢迎使用本系统”,另起行显示“输入密码:”。允许三次输入错误密码后可重新输入密码,三次输入...

用8086汇编语言设计一存取款小软件系统。要求进入系统后,屏幕上显示“欢迎使用本系统”,另起行显示“输入密码:”。允许三次输入错误密码后可重新输入密码,三次输入...

于 2022-06-18 发布 文件大小:876.00 B
0 160
下载积分: 2 下载次数: 1

代码说明:

用8086汇编语言设计一存取款小软件系统。要求进入系统后,屏幕上显示“欢迎使用本系统”,另起行显示“输入密码:”。允许三次输入错误密码后可重新输入密码,三次输入都出错则返回DOS。密码输入正确即进入本人帐号,并在屏幕上显示: “1 返回DOS 2 查阅余额 3 存款 4 取款” 然后按1,2,3,4键选择所需工作方式。 以上各方式有如下功能: 1 返回DOS-- 退出小系统,返回DOS 2 查阅余额-- 显示本人帐号内余额(元) 3 存款-- 输入存款数目,即与余额相加 4 取款-- 输入取款数目,即与余额相减 按2,3,4键即进入相应方式,以ENTER键结束,结束后再显示: "1 返回DOS 2 查阅余额 3 存款 4 取款"说明: ①屏幕显示可用英文,②帐号内要求可存额不小于十进制6位数 -wu

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • ttfdump源代码,希望大家喜欢,我会上传更多的代码共享
    ttfdump源代码,希望大家喜欢,我会上传更多的代码给大家分享-ttfdump source code, hope you like them, I will upload more code to share
    2023-01-01 07:35:03下载
    积分:1
  • 写函数int index返回字符t在字条串s中出现的最左边的位置,如果在s中没有与t匹配的子串,不返回...
    编写函数int index返回字符t在字条串s中出现的最左边的位置,如果在s中没有与t匹配的子串,不返回-1-function int index prepared to return to the characters not string"s note appeared in the leftmost position, If s and t is not matched substring, not to return-1
    2022-03-03 00:23:10下载
    积分:1
  • 解码程序,用PIC16C57C来解PT2262
    解码程序,用PIC16C57C来解PT2262-Decoding procedure, with PIC16C57C solved PT2262
    2022-06-02 22:50:20下载
    积分:1
  • vb 分形树
      Dim xs As Integer   Dim ys As Integer   Dim alph As Single   Dim lng As Single   Dim m As Integer   Const PI As Single = 3.14159265 Private Function tree(x As Integer, y As Integer, angle As Single, length As Single, n As Integer)     Dim x0 As Integer   Dim y0 As Integer   Dim alpha As Single   Dim beita As Single   Dim leng As Single   BackColor = vbWhite     If n > 0 Then     x0 = x + Cos(angle) * length     y0 = y - Sin(angle) * length     picture1.Line (x, y)-(x0, y0), vbbrake     alpha = angle - PI / 8     beita = angle + PI / 8     leng = 2 * length / 3         Call tree(x0, y0, alpha, leng, n - 1)  &nbs
    2022-01-24 19:06:52下载
    积分:1
  • CNC controller FM
    数控调频台控制器-CNC controller FM
    2022-03-16 22:01:21下载
    积分:1
  • very useful compilation of the four experimental report language! It can be down...
    非常有用的四个汇编语言实验报告!下载回来就可以交给老师了!!!!!绝对的好东西-very useful compilation of the four experimental report language! It can be downloaded back to the teachers! ! ! ! ! Definitely a good thing! !
    2023-08-06 09:05:03下载
    积分:1
  • (中断子程序)计时子程序
    (中断子程序)计时子程序----------------CLOCK 功能:①TMR1每50000指令周期(即50000微秒)中断一次, 进入本程序后重装定时器 TMR1, 并清除TMR1溢出标志(PIR1,0). -(Interrupt Subroutine) subroutine CLOCK timing functions: ① TMR1 every 50000 instruction cycles (that is 50000 microseconds) disruption of the first to enter this process re-timer TMR1, and clear TMR1 overflow flag (PIR1, 0).
    2023-06-20 14:15:03下载
    积分:1
  • 3、写口令程序 要求: 1) 口令是随系统时间而变动的。(在输入口令前应先把当时的系统时间显示在屏幕上) 2)口令输入有次数限制。(口令与时间有关...
    3、编写口令程序 要求: 1) 口令是随系统时间而变动的。(在输入口令前应先把当时的系统时间显示在屏幕上) 2)口令输入有次数限制。(口令与时间有关,但不能直接输与显示在屏幕上时间的数值,应进行运算。 3)、口令输入正确后进入选歌菜单,可选3首以上歌曲,可任意停止返回菜单。-3, the preparation of password procedures require: 1) The password is with the system changes over time. (Enter the password in the system at that time before the time displayed on the screen) 2) have a limited number of password input. (Password and time, but should not direct transmission and display on the screen time value calculations should be carried out. 3), enter the correct password selected songs backward menu options for more than three songs, free to stop the return of the menu.
    2022-03-22 00:03:09下载
    积分:1
  • it can help you use C++ program we
    it can help you use C++ program we
    2022-03-02 22:25:09下载
    积分:1
  • MCS51 basic debugging procedures, including 8255, keyboards, LED, etc.
    MCS51基本调试程序 包括8255、键盘、LED等-MCS51 basic debugging procedures, including 8255, keyboards, LED, etc.
    2022-11-26 15:30:04下载
    积分:1
  • 696518资源总数
  • 106010会员总数
  • 4今日下载