本人用汇编写的一个bmp位图的字符转换程序

 

有点缺点就是要经常更改其中的数值,算法还在考虑中,本人写的没有写注释,还望见谅:

dseg segment
fname1 db '333.bmp',0
fname2 db 'writer.txt',0
error1 db 'file not fount! $'
error2 db 'reading error! $'
error3 db 'writeing error! $'
handle1 dw 0
handle2 dw 0
buff db ?
buff1 db ?
count dw 0
count1 db 0
countx dw 0
countn dw 0
xlen dw 0
ylen dw 0
rrr db 0
ggg db 0
bbb db 0
dseg ends

cseg segment
 assume cs:cseg,ds:dseg
start:
mov ax,dseg
mov ds,ax
mov dx,offset fname1
mov ax,3d00h
int 21h
jnc open
mov dx,offset error1
mov ah,9
int 21h
jmp over
open:
mov handle1,ax

mov dx,offset fname2
mov cx,0
mov ah,3ch
int 21h
jnc cret_ok
mov dx,offset error1
mov ah,9
int 21h
jmp over
cret_ok:
mov handle2,ax
;---------------------打开文件---
mov bx,handle1
next:
push bx
mov dx,offset buff
mov cx,1
mov ah,3fh
int 21h
jc rderr
jmp bgg
rderr:
jmp rder
bgg:
cmp ax,cx
jb bf
bf1:
jmp bf2
bf:
jmp close
;;;;;;;;;;;;读长度xlen;;;;;;;;;;;;;;
bf2:
add count,1
cmp count,19
jb nb
jmp ns
nb:
jmp neeee
ns:
ja neee

xor ax,ax
mov al,buff
mov xlen,ax

neee:
cmp count,20
ja nee
mov ax,xlen
mov ah,buff
mov xlen,ax

nee:

;;;;;;;;;;读长度ylen;;;;;;;;;;;;;
;cmp count,23
;jb neeee
;ja nttt

;xor ax,ax
;mov al,buff
;mov ylen,ax

;nttt:
;cmp count,24
;ja ntt
;mov ax,ylen
;mov ah,buff
;mov ylen,ax
;ntt:
;---------------------读06fh到txt中----
cmp count,0ffffh
ja clos
jmp clo
clos:
jmp close
clo:
;-----------------回车换行----------
cmp count,55

jb neeee
ja odoa
mov dl,0dh
mov ah,2
int 21h

mov bx,handle2
mov buff1,0dh
mov dx,offset buff1
mov cx,1
mov ah,40h
int 21h
;jc xiecuo

mov dl,0ah
mov ah,2
int 21h

mov bx,handle2
mov buff1,0ah
mov dx,offset buff1
mov cx,1
mov ah,40h
int 21h
;jc xiecuo
;-------------------计算xlen的长度-----
mov ax,xlen
mov dx,3
mul dx
sub ax,2
mov countn,ax
;;;;;;;;;;;;;;
odoa:
mov ax,countn
cmp countx,ax
jbe nooooo
nover:
mov bx,handle2
mov buff1,0dh
mov dx,offset buff1
mov cx,1
mov ah,40h
int 21h

mov bx,handle2
mov buff1,0ah
mov dx,offset buff1
mov cx,1
mov ah,40h
int 21h
mov countx,0
jmp neeee
nooooo:
add countx,1
neeee:

;----------------------写到文本--
add count1,1
cmp count1,4
jne noa
jmp noo
noa:
jmp noad
noo:
mov count1,0
mov al,rrr
mov ah,ggg
mov bl,bbb
xor dx,dx
or dl,al
or dl,ah
or dl,bl
and dh,al
and dh,ah
and dh,bl
cmp dl,10101010b
ja rrrr
cmp dl,101010b
ja gggg
jmp bbbb

rrrr:
cmp dh,10000b
ja r1
cmp dh,100000b
ja r2
cmp dh,1000000b
ja r3
cmp dh,10000000b
ja r4

mov bh,'+'
jmp coor
r1:
mov bh,'-'
jmp coor
r2:
mov bh,'E'
jmp coor
r3:
mov bh,'H'
jmp coor
r4:
mov bh,';'
jmp coor
gggg:
cmp dh,10000b
ja g6
cmp dh,100000b
ja g7
cmp dh,1000000b
ja g8
cmp dh,10000000b
ja g9

g5:
mov bh,':'
jmp coor
g6:
mov bh,','
jmp coor
g7:
mov bh,'.'
jmp coor
g8:
mov bh,'3'
jmp coor
g9:
bbbb:
cmp dh,10000b
ja b11
cmp dh,100000b
ja b12
cmp dh,1000000b
ja b13
cmp dh,10000000b
ja b14

mov bh,'8'
jmp coor
b10:
mov bh,'9'
jmp coor
b11:
mov bh,'='
jmp coor
b12:
mov bh,'!'
jmp coor
b13:
mov bh,'N'
jmp coor
b14:
mov bh,'M'

coor:
mov buff1,bh
mov bx,handle2
mov dx,offset buff1
mov cx,1
mov ah,40h
int 21h
jc xiecuo
noad:
cmp count1,1
jne bb
mov al,buff
mov bbb,al
bb:
cmp count1,2
jne gg
mov al,buff
mov ggg,al
gg:
cmp count1,3
jne rr
mov al,buff
mov bbb,al
rr:

;---------------写入高位------------
mov al,buff
push ax;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>;
mov dl,al      ;
mov cl,4      ;
shr dl,cl      ;
add dl,30h      ;
mov buff,dl      ;
mov ah,2      ;
int 21h       ; 
       ;
       ;
;---------------写入低位---------   ;
pop ax;<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<;
and al,00001111b
add al,30h
mov dl,al
mov buff,dl
mov ah,2
int 21h

;;;;;;;;;;;;;;;
pop bx
jmp next
;;;;;;;;;;;;;;;;;读错----------
rder:
mov dx,offset error2
mov ah,9
int 21h
jmp over
;--------------写错------------
xiecuo:
mov dx,offset error3
mov ah,9
int 21h
;--------------文件关闭------------
close:
mov bx,handle1
mov ah,3eh
int 21h
mov bx,handle2
mov ah,3eh
int 21h

over:
;--------------------结束标志---------
mov dl,'$'
mov ah,2
int 21h

;--------------------显示xlen的高位-----------
mov ax,xlen
push ax
mov dl,ah
mov cl,4
shr dl,cl
add dl,30h

mov ah,2
int 21h
;;;;;;;;;;;;;;;
pop ax
and ah,00001111b
add ah,30h
mov dl,ah
mov ah,2
int 21h
;------------------显示xlen的低位--------------
mov ax,xlen
push ax
mov dl,al
mov cl,4
shr dl,cl
add dl,30h

mov ah,2
int 21h
;;;;;;;;;;
pop ax
and al,00001111b
add al,30h
mov dl,al
mov ah,2
int 21h
;;;;;;;;;;;;;;;;;;;;;;
;--------------------显示ylen的高位-----------
mov ax,ylen
push ax
mov dl,ah
mov cl,4
shr dl,cl
add dl,30h

mov ah,2
int 21h
;;;;;;;;;;;;;;;
pop ax
and ah,00001111b
add ah,30h
mov dl,ah
mov ah,2
int 21h
;------------------显示ylen的低位--------------
mov ax,ylen
push ax
mov dl,al
mov cl,4
shr dl,cl
add dl,30h

mov ah,2
int 21h
;;;;;;;;;;
pop ax
and al,00001111b
add al,30h
mov dl,al
mov ah,2
int 21h
;----------------------over---------
mov ah,4ch
int 21h
cseg ends
end start

//

 

:8:8::88+8888
+++++++++++++++++88888888++++8++8888888++++++++++++++++++
+++++++++++++++88+++888888+88888888+888888+++++++++++++++
+++++++++++++88++88+888888888+8888888888++88+++++++++++++
++++++++++88+88888+88888888+88888888888+8+++88+++++++++++
+++++++++8++888888888888888888888888888+8+++++88+++++++++
+++++++88+8+88888888888888888888888888888+++++++8++++++++
++++++8++888888888888+8888888888888888888++88++++88++++++
+++++8+++88888888888888888888888888888888888888+++8++++++
++++8++88888888888888888888888888+88888888888888+8+8+++++
++++++++8+888888888888888888888+8888888888888888888+8++++
++++8++8+8888888888888888888888888888888888888888++++8+++
++8+88++88888888888+8888888888888888888888888888888++++++
+88+88++8888888888888888888888888888888888888888888++++++
+88888+8888888888888888888888888888888888888888888888++++
+88888888888888++8888888+8888888888888888888888888888++++
++888888888888++88888888888888888888888888888888888888+8+
+++888888888+++++8888888888888888+888888+8888888+++8+++8+
+++++8888888+88+8888888888+8+8+8++888888888888888+8++888+
++++88888888++8+888888++8+++++++8+88888888888888+8888++8+
+8++88888888+8888888888+8+++++++8+88888888888888+8++88+++
+8++8888888+++88888888+8++++++++++8+888888888888888888+++
+8++888888888888888888888+++++++++88888888888888888++++++
++8+88888888888888888888888+++++8+88888888888888888++++++
+++++888888888888888888888888888+888888888888888888++8+++
+++++++888888888888888888888888+88888888888888888+++8++++
++++8++888888888888888888888888888888888888888888+8++++++
+++++8+8888888888888888888888888888888888888888888+++++++
++++++888888888++8888888888888888888888++888888++88++++++
+++++++8888888+++++8++88888888888888+88+88+8888+8++++++++
++++++++88888++++++++++888888888888+8++++8888888+++++++++
+++++++++888++++++++++++++8+++++8++8++++888888+++++++++++
+++++8++++8++88++++++++++++++++++++++++++8888++++8+++++++
+++++8+++++++++88+++++++++++++++++++++++88+++++++8+++++++
+++++8+++++++++++8888888++++++++8888888++++++++++8+++++++
+++++8+++++++++++++++++++8888888+++++++++++++++++8+++++++
++++8+++++++++++++++++++++++++++++++++++++++++++++8++++++
++++88++++++++++++++++++++++++++++++++++++++++++++8++++++
++++88+++++++++++++++++++++++++++++++++++++++++++88++++++
++++88+++++++++++++++++++++++++++++++++++++++++++88++++++
++++8++++++++++++++++++++++++++++++++++++++++++++88++++++
++++8++++++++++++++++++++++++++++++++++++++++++++88++++++
++++8+++++++++++++++++++++++++++++++++++++++++++++8+8++++
++++8++++++++88888+++++++++++++++++88888++++++++++8+8++++
++++8+++++++++++++++++++++++8+++++8+++++8+++++++++8+8++++
++++8++++++++88888++++++++++88+++++88888++++++++++8+8++++
++++8++++++++++++++++++++++++8++++++++++++++++++++8+8++++
++++8++++++++++++++++++++++++8++++++++++++++++++++8+8++++
+++++8+++++++++++++++++++++++8+++++++++++++++++++8++8++++
+++++8+++++++++++++++++++++++8+++++++++++++++++++8++8++++
+++++8++++++++++++++++++++8++8+++++++++++++++++++8++8++++
+++++8++++++++++++++++++++8++8+++++++++++++++++++8++8++++
+++++8++++++++++++++++++++8++8+++++++++++++++++++8+++++++
+++++8+++++++++++++++++++88++8+++++++++++++++++++8+++++++
+++++++++++++++++++++++++8++++8++++++++++++++++++8+++++++
++++88+++++++++++++++++++++++++8+++++++++++++++++8+++++++
++++88+++++++++++++++++++++++++8++++++++++++++++++8++++++
+++++8++++++++++++++++++++8++8+8+++++++++++++++++++++++++
++++++++++++++++++++++++88888888+++++++++++++++++++++++++
+++++++8+++++++++++++++++++++++++++++++++++++++8+++++++++
+++++++8+++++++++++++++++++++++++++++++++++++++8+++++++++
++++++++8+++++++++++++++++++++++++++++++++++++8++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++888888++++++++++++++++++++++++++
+++++++++++++++++++++++88++++++88++++++++++++++++++++++++
++++++++++++++++++++++8++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++88++++++88++++++++++++++++++++++++
++++++++++8++++++++++++++888888+++++++++++++8++++++++++++
+++++++++++8+++++++++++++++++++++++++++++++8+++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++88+++++++++++++++++++++++++88+++++++++++++++
+++++++++++++88+++++++++++++++++++++++++88+++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++8+++++++++++++++++++++8++++++++++++++++++
+++++++++++++++++8+++++++++++++++++++8+++++++++++++++++++
+++++++++++++++++++88+++++++++++++88+++++++++++++++++++++
+++++++++++++++++++88+++++++++++++88+++++++++++++++++++++
+++++++++++++++++++++888+++++++888+++++++++++++++++++++++
++++++++++++++++++++++++8888888++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 

喜:::(此图片比较大 ,大家若想看此字,请将其复制到自己的电脑上就能看到一个很漂亮的喜字了)

+8:8::88+8888
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++88+++++++++++++++++++++++++++++++++88++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++++++
+++++++++++++++++++++888888888888888888888888888++++++++888888888888888888888888888+++++++++++++++++++++++
++++++++++++++++++++8888888888888888888888888888+++++++88888888888888888888888888888++++++++++++++++++++++
++++++++++++++++++++8888888888888888888888888888+++++++88888888888888888888888888888++++++++++++++++++++++
++++++++++++++++++++8888888888888888888888888888+++++++88888888888888888888888888888++++++++++++++++++++++
+++++++++++++++++++++888888888888888888888888888++++++++888888888888888888888888888+++++++++++++++++++++++
++++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++8888+++++++++++++++++++++++++++++++++++
+++++++++++++++++++888888888888888888888888888888++++++88888888888888888888888888888++++++++++++++++++++++
+++++++++++++++++++8888888888888888888888888888888++++8888888888888888888888888888888+++++++++++++++++++++
+++++++++++++++++++8888888888888888888888888888888++++8888888888888888888888888888888+++++++++++++++++++++
+++++++++++++++++++8888888888888888888888888888888++++8888888888888888888888888888888+++++++++++++++++++++
+++++++++++++++++++888888888888888888888888888888++++++88888888888888888888888888888++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++88+++++++++++++++++++++++++++++++++88++++++++++++++++++++++++
++++++++++++++++++++++88888888888888888888888888+++++++++88888888888888888888888888+++++++++++++++++++++++
+++++++++++++++++++++888888888888888888888888888++++++++8888888888888888888888888888++++++++++++++++++++++
+++++++++++++++++++++888888888888888888888888888++++++++8888888888888888888888888888++++++++++++++++++++++
+++++++++++++++++++++888888888888888888888888888++++++++8888888888888888888888888888++++++++++++++++++++++
+++++++++++++++++++++888888888888888888888888888++++++++8888888888888888888888888888++++++++++++++++++++++
+++++++++++++++++++++888+++++++++++++++++++++888++++++++8888++++++++++++++++++++8888++++++++++++++++++++++
+++++++++++++++++++++888+++++++++++++++++++++888++++++++8888++++++++++++++++++++8888++++++++++++++++++++++
+++++++++++++++++++++888+++++++++++++++++++++888++++++++8888++++++++++++++++++++8888++++++++++++++++++++++
+++++++++++++++++++++888+++++++++++++++++++++888++++++++8888++++++++++++++++++++8888++++++++++++++++++++++
+++++++++++++++++++++888+++++++++++++++++++++888++++++++8888++++++++++++++++++++8888++++++++++++++++++++++
+++++++++++++++++++++888+++++++++++++++++++++888++++++++8888++++++++++++++++++++8888++++++++++++++++++++++
+++++++++++++++++++++888+++++++++++++++++++++888++++++++8888++++++++++++++++++++8888++++++++++++++++++++++
+++++++++++++++++++++888+++++++++++++++++++++888++++++++8888++++++++++++++++++++8888++++++++++++++++++++++
+++++++++++++++++++++888+++++++++++++++++++++888++++++++8888++++++++++++++++++++8888++++++++++++++++++++++
+++++++++++++++++++++888+++++++++++++++++++++888++++++++8888++++++++++++++++++++8888++++++++++++++++++++++
+++++++++++++++++++++888+++++++++++++++++++++888++++++++8888++++++++++++++++++++8888++++++++++++++++++++++
+++++++++++++++++++++888888888888888888888888888++++++++8888888888888888888888888888++++++++++++++++++++++
+++++++++++++++++++++888888888888888888888888888++++++++8888888888888888888888888888++++++++++++++++++++++
++++++++++++++++++++++88888888888888888888888888+++++++++888888888888888888888888888++++++++++++++++++++++
+++++++++++++++++++++888888888888888888888888888++++++++888888888888888888888888888+++++++++++++++++++++++
+++++++++++++++++++++88888888888888888888888888+++++++++88888888888888888888888888++++++++++++++++++++++++
+++++++++++++++++++++888888++++++++++++++++888++++++++++888888++++++++++++++++888+++++++++++++++++++++++++
++++++++++++++++++++++88888+++++++++++++++8888+++++++++++888888++++++++++++++8888+++++++++++++++++++++++++
+++++++++++++++++++++++88888++++++++++++888888++++++++++++88888+++++++++++++88888+++++++++++++++++++++++++
++++++++++++++++++++++++888888++++++++++88888++++++++++++++888888++++++++++888888+++++++++++++++++++++++++
+++++++++++++++++++++++++8888888++++++8888888+++++++++++++++8888888++++++8888888++++++++++++++++++++++++++
+++++++++++++++++++++++++88888888++++888888++++++++++++++++++8888888+++++88888++++++++++++++++++++++++++++
+++++++++++++++++++++++88+8888888++++88888++++++++++++++++88+8888888+++++88888++++++++++++++++++++++++++++
++++++++++++++++88888888888888888888888888888888888+8888888888888888888888888888888888888+++++++++++++++++
++++++++++++++++88888888888888888888888888888888888888888888888888888888888888888888888888++++++++++++++++
++++++++++++++++88888888888888888888888888888888888888888888888888888888888888888888888888++++++++++++++++
++++++++++++++++88888888888888888888888888888888888888888888888888888888888888888888888888++++++++++++++++
++++++++++++++++88888888888888888888888888888888888+8888888888888888888888888888888888888+++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++88+++++++++++++++++++++++++++++++++88++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++8888888888888888888888888888+88++++8888888888888888888888888888+88++++++++++++++++++++
+++++++++++++++++++88888888888888888888888888888888++++88888888888888888888888888888888+++++++++++++++++++
+++++++++++++++++++88888888888888888888888888888888+++888888888888888888888888888888888+++++++++++++++++++
+++++++++++++++++++88888888888888888888888888888888+++888888888888888888888888888888888+++++++++++++++++++
+++++++++++++++++++88888888888888888888888888888888+++88888888888888888888888888888888++++++++++++++++++++
+++++++++++++++++++888+++++++++++++++++++++++++8888+++888+++++++++++++++++++++++++8888++++++++++++++++++++
+++++++++++++++++++888+++++++++++++++++++++++++8888+++888+++++++++++++++++++++++++8888++++++++++++++++++++
+++++++++++++++++++888+++++++++++++++++++++++++8888+++888+++++++++++++++++++++++++8888++++++++++++++++++++
+++++++++++++++++++888+++++++++++++++++++++++++8888+++888+++++++++++++++++++++++++8888++++++++++++++++++++
+++++++++++++++++++888+++++++++++++++++++++++++8888+++888+++++++++++++++++++++++++8888++++++++++++++++++++
+++++++++++++++++++888+++++++++++++++++++++++++8888+++888+++++++++++++++++++++++++8888++++++++++++++++++++
+++++++++++++++++++888+++++++++++++++++++++++++8888+++888+++++++++++++++++++++++++8888++++++++++++++++++++
+++++++++++++++++++888+++++++++++++++++++++++++8888+++888+++++++++++++++++++++++++8888++++++++++++++++++++
+++++++++++++++++++888+++++++++++++++++++++++++8888+++888+++++++++++++++++++++++++8888++++++++++++++++++++
+++++++++++++++++++888+++++++++++++++++++++++++8888+++888+++++++++++++++++++++++++8888++++++++++++++++++++
+++++++++++++++++++888+++++++++++++++++++++++++8888+++888+++++++++++++++++++++++++8888++++++++++++++++++++
+++++++++++++++++++888+++++++++++++++++++++++++8888+++888+++++++++++++++++++++++++8888++++++++++++++++++++
+++++++++++++++++++88888888888888888888888888888888+++88888888888888888888888888888888++++++++++++++++++++
+++++++++++++++++++88888888888888888888888888888888+++88888888888888888888888888888888++++++++++++++++++++
+++++++++++++++++++88888888888888888888888888888888++++8888888888888888888888888888888++++++++++++++++++++
+++++++++++++++++++88888888888888888888888888888888++++8888888888888888888888888888888++++++++++++++++++++
++++++++++++++++++++888888888888888888888888888888+++++888888888888888888888888888888+++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值