永发信息网

现要求编写一个VB程序,输入两个正整数后比较大小输出较大数(代码)

答案:2  悬赏:30  手机版
解决时间 2021-12-21 15:56
  • 提问者网友:不要迷恋哥
  • 2021-12-21 06:18
现要求编写一个VB程序,输入两个正整数后比较大小输出较大数(代码)
最佳答案
  • 五星知识达人网友:拜訪者
  • 2021-12-21 07:33
dim a as integer ,b as integer,c as integer
if a>=b then
c=a mod b
else
c=b mod a
end if
全部回答
  • 1楼网友:胯下狙击手
  • 2021-12-21 08:31
a = InputBox("1st number") b = InputBox("2nd number") If IsNumeric(a) And IsNumeric(b) Then     If a > b Then         Print a     Else         Print b     End If Else     MsgBox "error" End If
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯