vb

来源:互联网 发布:股票t0交易平台源码 编辑:程序博客网 时间:2024/06/12 22:00

Dim n As Byte

n = 23

Const er As Byte = 2

Dim shang As Byte

Dim yushu(1 To 5) As Byte

Dim i As Byte

i = 5

shang = n \ er

yushu(i) = n Mod er

While shang <> 0

    i= i - 1

    n= shang

   shang = n \ er

   yushu(i) = n Mod er

   Wend

   Print yushu(1); yushu(2); yushu(3); yushu(4); yushu(5);

End Sub 

0 0
原创粉丝点击