本文主要是介绍汇编编写彩票36选7摇奖,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
;使用约瑟夫环,结合系统当前的时间“秒”,构造一个随机数产生函数:秒*X+CX作为选择号码的依;据,模拟彩票36--7s0 segment
ticket dw 36 dup(0)
s0 ends
s1 segment stack
dw 100 dup(?)
top label word
s1 ends
s2 segment
assume cs:s2,ss:s1,ds:s0
cp367 proc far
mov ax,s0
mov ds,ax
mov ax,s1
mov ss,ax
lea sp,top
xor al,al
xor bh,bh
xor si,si
mov cx,36
sum:
inc al
inc bh
inc bh
cmp bh,72
jne direct
xor bh,bh
direct:
mov ah,bh
mov ticket[si],ax
inc si
inc si
loop sum
call far ptr ysfh
mov ah,4ch
int 21h
cp367 endp
ysfh proc far
push ax
push bx
push cx
push dx
push si
push di
mov ah,2ch
int 21h
mov al,dl
这篇关于汇编编写彩票36选7摇奖的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!