码迷,mamicode.com
首页 > 其他好文 > 详细

VB求最大公约数的两个例子

时间:2018-03-26 22:34:05      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:com   while   class   ted   rem   blog   window   else   公约数   

VB求最大公约数的两个算法

Private Sub Command1_Click()

Dim a As Long, b As Long

a = InputBox("请输入要求最大公约数的整数", " 求两数的最大公约数:step1", 0)

b = InputBox("请输入要求最大公约数的整数", " 求两数的最大公约数:step2", 0)

Print "step1>>>整数1 : "a

Print "step2>>>整数2 : "; b

Do While a <> b

If a > b Then

a = a - b

Else b = b - a

End If Loop

Print "step3:执行步数:"; i

Print Print "结果: 最大公约数为 》》》"; a

Print "______________________________________"

End Sub

Rem ?声明:非盈利,切勿用于商业用途。制作者:Totoo

Rem ?功能:计算两数的最大公约数

Rem ?环境:windows

Rem ?类型:开源 ‘writed by totoo‘

Private Sub Command2_Click()

Dim x As Long, y As Long, m As Long, n As Long, r As Long, i As Long

i = 1 x = InputBox("请输入要求最大公约数的整数", " 求两数的最大公约数:step1", 0)

y = InputBox("请输入要求最大公约数的整数", " 求两数的最大公约数:step2", 0)

Print "step1>>>整数1 : "; x

Print "step2>>>整数2 : "; y

If x - y > 0 Then n = y

Else n = x x = y y = n r = x - y

End If

Do While r <> 0

If n - r > 0 Then m = n n = r

Else m = r End If

r = m - n i = i + 1 Loop

Print "step3:执行步数:"; i

Print Print "结果: 最大公约数为 》》》"; n

Print "______________________________________"

End Sub 

VB求最大公约数的两个例子

标签:com   while   class   ted   rem   blog   window   else   公约数   

原文地址:https://www.cnblogs.com/totoo/p/vb.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!