版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、武汉理工大学汇编语言程序设计课程设计报告学生成绩管理系统程序设1、需求说明用汇编语言编写一个学生成绩管理系统,实现基本学生成绩管理,功能包括添加学生信息、修改学生信息、删除学生信息、打印学生信息、浏览学生信息存储文件以及粗略的统计学生信息,程序界面友好,有输入界面提示,有菜单功能。2、设计要求2.1设计说明该程序要求具备的功能:清晰且易于操作的用户界面,在文本编辑界面中输入学生成绩。其中“i”表示插入,“l”表示浏览,“q”表示查询,“e”表示退出,“d”表示删除,“m”表示修改,“c”表示统计各分数段人数,“p”表示打印.以上各功能应该能单独运行和连续运行。2.2开发平台与开发工具该程序使用
2、dos操作系统32位实模式汇编语言编写,使用的编译器为微软的masm5.0,调试工具为dos下的debug.exe程序。2.3数据结构程序采用静态链表的方式来存储学生信息,链表结点描述如下: student struc m_sname db 6 dup( ) m_snum db 8 dup( ) m_sscore db 3 dup( ) student ends 3、 设计思路3.1设计方案及基本流程3.11总体结构分析整个程序采用总程序调用子程序的方式。主程序完成菜单的显示,子程序完成一个独立功能的方法实现。各子程序的实现方法简要描述如下:1、设计insert(录入)子程序时,先打开文件sc
3、ore.txt,并置文件指针到文件尾,然后调用get_rec子程序接受用户的输入,再把用户的输入写入文件,最后关闭文件返回主程序。2、设计delete(删除)子程序时,先打开文件,再调用宏getin得到要删除的学生的姓名,然后读文件中的记录,直到其记录的名与所输入的名字相同为止,把文件指针后退8个字符(即4门课程所占的空间),写入8个“0”字符,关闭文件返回主程序。3、设计list(浏览)子程序时,先打开文件,然后读一个记录,并通过调用宏show_item将其显示到屏幕上,若文件指针没有到达文件尾,则继续读记录并显示,当文件指针到达文件尾时,则关闭文件返回主程序。4、设计modify(修改)子
4、程序时,先打开文件score.txt,调用get_recz子程序得到要修改的记录,然后读文件中的记录,并与用户输入的记录作比较(只比较记录中的名字部分),若不同则读下一个记录,若相同则将文件指针后退23个字符(一个记录为23个字符的长度),然后把用户输入的记录写入文件,最后关闭文件返回主程序。5、设计count(统计)子程序,先打开文件,然后读记录,比较记录的第16个字符(数学成绩的高位)并统计,直到文件指针到达文件尾,最后关闭文件调用宏show_item显示统计结果,返回主程序。6、设计query(查询)子程序时,先打开文件,通过宏getin得到要查找学生的姓名,然后读文件记录,并同要查找的
5、学生姓名比较,若相同则输出,若不同则继续读文件记录,最后显示查询结果,关闭文件返回程序。3.12单元子程序设计下面详细分析程序中用到的主要的子程序。(1)insert子程序insert子程序的功能是录入一条记录。 首先保留现场入栈。然后用dos中断3d号功能打开fname指定的文件。然后用宏cleari清除屏幕右半部的记录输入区域。在记录的第一项处置光标,用get_rec子程序获取内容。用dos中断42h号功能将指针移到文件末尾。 在用dos中断40h号功能将放在buffer缓冲区的23个字节的内容写到文件中,接着关闭文件,重新设置光标置在显示记录位置。 最后弹栈恢复现场。(2)get_rec
6、子程序的功能是获取新的记录内容。 get_rec子程序的功能是获取新的记录内容。 首先用宏getin获取学生的姓名,放入buffer2中,最多15个字符,如果遇到回车键则提前结束。再用循环方式格将buffer2中的15个字符送到buffer1中。然后用宏set_pi将光标置于数字成绩输入项后,等待键盘输入。输入的成绩,先放在buffer2中,然后加到buffer1中的姓名后面。输入为2个字符或遇到回车键时提前结束。接着用同样的方法输入英语成绩、计算机成绩和中文成绩。完成后,这个子程序就得到了一个记录的所以信息。(3)openf子程序 openf是一个非常简单的子程序。它的作用是打开一个文件并把
7、文件句柄保存在数据段的handle缓冲区中。(4)query子程序query子程序的作用上查询一条记录。首先保留现场(这些操作每个子程序都基本相同,以后不在赘述)。然后分别清除界面右上方和下边的区域。打开fname指定的文件并保留文件句柄。将光标置于界面的下半空白部分开始处,用宏getin获取最多15个字符的输入(姓名),放在buffer1中。显示记录各字段的标题。然后用下面这段程序读出一条记录(23个字节)放在buffer2中,然后将buffer1中的内容和buffer2中进行比较,看是否相同。如果不同,再继续向下从文件中读出23个字节比较,循环向下,直到相同或文件结束为止。如果相同,则显示
8、该条记录,然后关闭文件,恢复现场。(5)modify子程序 modify子程序的功能是修改记录。 先保护现场,然后清除右上部分的记录输入区域,接着打开文件。 用fet_rec子程序获取输入的记录信息,并存入buffer1中。从打开的文件中读取一个记录的内容(23个字节)放在buffer2中。 比较记录前面的15个字节(姓名),如果不同,则读取下一个记录;如果相同,则回移一个记录的指针,回到刚才这条记录的位置(因为读取一个记录, 指针已移到下一个记录上)。将放在fuffer1中的输入的记录内容写到刚才这条记录在文件中的位置上,从而实现此记录的修改。最后关闭程序,恢复现场。(6)delete子程序
9、delete子程序的功能是删除一条记录。首先保留现场,清除屏幕。然后打开文件,保留文件句柄。用宏getin获取15个字节的姓名字符,放在fuffer1中。读取一条记录(23个字节),将其放在fuffer2中,然后和fuffer1中的内容进行比较,如果不同,再读取下一个记录。如果姓名相同,则把指针后移8个字符(4门课程所占空间),写入8个“0字符。关闭文件,恢复现场并退出。(7)list子程序list子程序 的作用是显示文件中的记录。首先清除记录输入区和显示区域。然后显示记录字段的标题。打开文件,保存文件句柄。读取一个记录的内容放在缓冲区buffer1中,并判断是否到了文件末尾,如果不是,则显示
10、这条记录。循环读取直到文件结束。最后关闭程序,恢复现场。(8)print子程序print子程序打开文件。读取一条记录,汇编语言提供了自定义数据结构的结构定义语句,可将不同的数据类型放在同一个数据结构中,便于处理,在本程序中的记录就采用了结构定义语句。这里读取记录也用了结构的方法。接着用dos中断21h的5号功能,逐字打印存放在fuffer1中的所有字符。一条记录打完后,打印回车符换行。然后用同样方法继续读取下一个记录并打印,直到文件结束为止。最后关闭文件退出。(9)cot子程序cot子程序的作用是统计各分数段学生的人数,为简化程序,作为示例,本程序只统计记录数学各分数段的人数。首先显示统计结果
11、的标题:maths60708090前项,j-后项 ;注意cmpsb过程中si,di指针的自动变化! push cx push si push di mov cx,17;t=i,即t=前项 mov si,i lea di,stutemp rep movsb mov cx,17;i=j,si-后项,即前项=后项 mov di,i ; rep movsb mov cx,17;j=t,di-后项,即后项t lea si,stutemp rep movsb mov swapped,1 pop di pop si pop cx endm space macro ;输出空格符 push dx push ax
12、 lea dx,gap mov ah,9 int 21h pop ax pop dx endm ;显示提示信息 showmsg macro n push ax push dx mov ah,9 lea dx,msg&n int 21hpop dx pop ax endm movitem macro dst,src push cx push di push si cld mov cx,17 lea di,dst lea si,src rep movsb pop si pop di pop cx endm data segment studentx student 30 dup() stutemp
13、 db 17 dup (0),$;临时保存一条item信息 studisp db 19 dup(0),$ ;-定义名字 学号 分数的输入缓冲区-namepar label byte;输入缓冲区 maxnlen db 7 namelen db ? namefld db 7 dup(?) numpar label byte maxmlen db 9 numlen db ? numfld db 9 dup(?) scopar label byte maxsco db 4 scolen db ? scofld db 4 dup(?) ;输入文件路径缓冲区 pathpar label byte path
14、max db 40 pathlen db ? pathnam db 40 dup(?) ae90 db 0 ae80 db 0 ae70 db 0 ae60 db 0 b60 db 0 msg_b60 db 9,9,scores=60:$ msg_ae70 db 9,9,scores=70:$ msg_ae80 db 9,9,scores=80:$ msg_ae90 db 9,9,scores=90:$ cur_i dw ? crlf db 13,10,$ titl db students management system,0dh,0ah, ,0dh,0ah,0dh,0ah menu1 db
15、 i(insert the data of the students),0dh,0ah ;menu menu2 db l(browse the data of the students),0dh, 0ah menu3 db q(query the data of the students),0dh, 0ahmenu4 db d(delete the data of the students),0dh, 0ahmenu5 db m(modify the data of the students),0dh,0ahmenu7 db p(print the data of the students),
16、0dh, 0ahmenu8 db c(statistics the data of the students),0dh, 0ahmenu9 db e(exit the system),0dh, 0ah,$ msgmenu5_1 db 0dh,0ah,1-modify name,0dh,0ah msgmenu5_2 db 2-modify number,0dh,0ah msgmenu5_3 db 3-modify score,0dh,0ah,$ msgmenu3_1 db 0dh,0ah,1-search name,0dh,0ah msgmenu3_2 db 2-search number,0d
17、h,0ah msgmenu3_3 db 3-search score,0dh,0ah,$ mmenutip db choose a number from the menu above,0dh,0ah,$ msgprinttitle db 0dh,0ah,0dh,0ah, sno sname score ,0dh,0ah,$ gap db $ stu dw ? stustored dw 0;已写至内存中的item数 swapped db 0 sav_cnt dw ? stusaved dw 0;已存盘的item数 saveflag db 1;是否已存盘标志 errcde db 0;文件操作错误
18、标志 endcde db 0;读文件结束标志 endaddr dw ? filehandle dw ? msg_titleln db -,13,10,$ msgsepln db -,0dh,0ah,$ msg02 db please input the new student info.,13,10,$ msg03 db name:,$ msg04 db id:,$ msg05 db score:,$ msg07 db successly saved!,13,10,$ msgdeled db successly deleted a item!,13,10,$ msgmoded db succe
19、ssly modified a item content!,13,10,$ msginsed db successly inserted item(s)!,13,10,$ msgqforins db insert this item?(y/n):,13,10,$ msgback db press any key to back.$ msgexit db press any key to exit.$ msg09 db students out of 30.,13,10,$ msg20 db there are more than 30 students.,13,10,$ msg21 db sa
20、ve as:,13,10,$ msg22 db please input the file you want to operate:,13,10,$ msg23 db read successly!,13,10,$ msg27 db there isn,27h,t any student.,13,10,$ msgnoext db there is no such item!,13,10,$ msgnaminfid db please input a name to find:,13,10,$ msgnuminfid db please input a number to find:,13,10
21、,$ msgscoinfid db please input a score to find:,13,10,$ msgstattit db 9,9,the result of statistics is listed as follow:,13,10,$ msg_nname db please input a new one:,13,10,$ msg_nnum db please input a new num.:,$ msg_nsco db please input a new score.:,$ msgqsave db the ducoment have not saved.do you
22、want to save it now(y/n)?,$ msg_delnamin db please input the name you want to delete:,13,10,$ msg_modname db please input the name field you want to modify:,13,10,$ msg_modnum db please input the number field you want to modify:,13,10,$ msg_modsco db please input the score field you want to modify:,
23、13,10,$ opnmsg db *error occured while opening file*,13,10,$ wrtmsg db *error occured while writing file*,13,10,$ readmsg db *error occured while reading file*,13,10,$ routemsg db *path name is invalid*,13,10,$ data ends code segment assume cs:code,ds:data,ss:stsg,es:data main proc far start: mov ax
24、,data mov ds,ax mov es,ax mainmenu: mov ax,0600h mov cx,0000h mov dx,174fh mov bh,07 int 10h mov ah,02 ;set cursor mov bh,0 mov dx,0100h int 10h lea dx,titl ;display menu mov ah,9 int 21h showmsg _titleln lea dx,mmenutip mov ah,9 int 21h case: mov ah,0 int 16h cmp ah,17h;i je addone cmp ah,26h;l je
25、browse cmp ah,19h;p je display cmp ah,10h;q je query cmp ah,20h;d je del_interm cmp ah,2eh;c je statis cmp ah,32h;m je change cmp ah,12h;e je exit display: call display_in anykeyback jmp mainmenu query: call query_in anykeyback jmp mainmenu browse: call browse_in anykeyback jmp mainmenu addone: call
26、 insert_in anykeyback jmp mainmenu exit: call quit statis: call stat_in anykeyback jmp mainmenu del_interm: jmp delete change: call mod_in anykeyback jmp mainmenu delete: call del_in anykeyback jmp mainmenu beep: mov ah,14 mov al,7 mov bh,0 int 10h jmp mainmenu main endp ;- browse_in proc near call
27、near ptr clear call near ptr cursor call near ptr readall call name_sort call near ptr print ret browse_in endp ;- del_in proc near call clear call cursor call delete_in ret del_in endp ;- query_in proc near call clear call cursor call bg_search ret query_in endp ;- stat_in proc near call clear call
28、 cursor call near ptr stat ret stat_in endp ;- insert_in proc near call clear call cursor call near ptr input call name_sort ret insert_in endp ;- display_in proc near call clear call cursor call near ptr print ret display_in endp ;- mod_in proc near call clear call cursor call print call bg_modify
29、call name_sort ret mod_in endp ;- delete_in proc near push ax push dx call print crlfm mov ah,9 lea dx,msg_delnamin int 21h call near ptr inputname call near ptr del cmp ax,-1 je qdel showmsg deled qdel: pop dx pop ax ret delete_in endp ;- bg_search proc near showmsg menu3_1 mov ah,1 int 21h;getch()
30、 crlfm cmp al,1 je q1 cmp al,2 je q2 showmsg scoinfid lea bx,studentx+14 mov dx,3 jmp bgsear q1: showmsg naminfid call near ptr inputname lea bx,studentx mov dx,1 jmp bgsear q2: showmsg numinfid call near ptr inputnum lea bx,studentx+6 mov dx,2 bgsear: push bxpush dxcall near ptr search;search(stude
31、ntx,1)cmp ax,-1 je qins showmsg printtitle showmsg sepln push si mov si,ax call near ptr printline pop si jmp qque qins: showmsg qforins mov ah,01 int 21h crlfm cmp al,y jne qque call inputnum call inputsco call stor showmsg insed mov saveflag,0 qque: ret bg_search endp ;- bg_modify proc near push a
32、x push bx push dx showmsg menu5_1;display modify submenu mov ah,1 int 21h;getch() crlfm cmp al,1 je t1 cmp al,2 je t2 mov bx,3 call inputsco jmp cin t1: call inputname mov bx,1 jmp cin t2: mov bx,2 call inputnum cin: push bx call near ptr modify cmp ax,-1 je qmodi crlfm showmsg moded qmodi: pop dx p
33、op bx pop ax ret bg_modify endp ;- quit proc near cmp saveflag,0 je qforsav jmp qsys qforsav: call clear call cursor showmsg qsave mov ah,1 int 21h cmp al,y je savit jmp qsys savit: call save mov ah,3eh;close file mov bx,filehandle int 21h qsys: mov ax,4c00h int 21h ret quit endp ;- search proc near
34、 push bp mov bp,sp push di push bx push si push cx push dx mov di,bp+6 mov dx,stustored mov bx,bp+4;bx:type mov bp,di cmp bx,1 je snam cmp bx,2 je snum mov cx,3 mov bx,cx lea ax,scofld jmp loop1 snam: mov cx,6 mov bx,cx lea ax,namefld jmp loop1 snum: mov cx,8 mov bx,cx lea ax,numfld loop1: mov si,ax
35、 mov cx,bx repe cmpsb ;连续查找匹配名字 je found ;找到跳转found add bp,17 ;把查找转到下一个名字 mov di,bp dec dh jnz loop1 ;循环查找 mov ax,-1 showmsg noext jmp qsearch found: mov ax,bp mov dx,stustored sub dx,bx mov cur_i,dx qsearch:pop dx pop cx pop si pop bx pop di pop bp ret 4 search endp ;- name_sort proc near push si p
36、ush di push ax push bx push dx push cx cmp stustored,1 je qsort lea bx,studentx push bx mov ax,stustored sub ax,1 mov bl,17 mul bl pop bx add bx,ax mov dx,stustored sub dx,1 ;dx:i,即循环次数 l1: mov swapped,0 sub bx,17 mov endaddr,bx push bx lea si,studentx;si:j,j=0 l2: mov cx,6 mov di,si add di,17 mov bx,di mov ax,si repe cmpsb jbe s3 exchange ax,bx s3: mov si,ax add si,17;j+ cmp si,endaddr jbe l2 pop bx cmp swapped,0 je qsort dec dx jnz l1 qsort: pop cx pop dx pop bx pop ax pop di pop si ret name_sort endp
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 二零二五年度桥梁栏杆采购合同模板6篇
- 2025年度口腔诊所投资合作与风险分担合同3篇
- 二零二五版材料采购合同补充协议:技术创新共享2篇
- 二零二五版抵押借款合同与借款合同签订流程与风险防范3篇
- 二零二五版国有房产出售合同(智慧社区共建协议)3篇
- 2025年度餐饮业中央厨房租赁合同3篇
- 二零二五年度35KV变电站电气设备技术改造合同3篇
- 二零二五年房地产项目乡村振兴战略合作开发合同3篇
- 二零二五版班组分包道路养护合同3篇
- 2025版金融产品股权及债权转让与风险管理合同3篇
- 公务员考试工信部面试真题及解析
- GB/T 15593-2020输血(液)器具用聚氯乙烯塑料
- 2023年上海英语高考卷及答案完整版
- 西北农林科技大学高等数学期末考试试卷(含答案)
- 金红叶纸业简介-2 -纸品及产品知识
- 《连锁经营管理》课程教学大纲
- 《毕淑敏文集》电子书
- 颈椎JOA评分 表格
- 员工岗位能力评价标准
- 定量分析方法-课件
- 朱曦编著设计形态知识点
评论
0/150
提交评论