1樓:
dim a, b, c, max as singlea = text1.text
b = text2.text
c = text3.text
if a > b then
max=a
else
max=b
end if
if max< c then max=c
msgbox "最大值是" & max
2樓:憂鬱的小風風
dim i, j, k, h as singlei = textbox1.text
j = textbox2.text
k = textbox3.text
if i > j then
h = i
else
h = j
end if
if k > h then
h = k
end if
msgbox(h)
拉3個textbox,乙個button
3樓:傳說中的
dim a,b,c,t as integerif a>b then t=a
else t=b
end if
if t>c
print t
else
print c
end if
4樓:匿名使用者
private sub form_load()dim a(3) as integer
form1.show
for i = 1 to 3
a(i) = inputbox("請輸入數值")next i
if a(1) > a(2) and a(1) > a(3) then
print "您輸入的最大的數值為"; a(1)else
if a(2) > a(1) and a(2) > a(3) then
print "您輸入的最大的數值為"; a(2)else
print "您輸入的最大的數值為"; a(3)end if
end if
end sub
Visual Basic程式設計(VB)求一道簡單題目的代
手機使用者 在窗體上g放一i個h命令按鈕,程式執行單擊按鈕,要求輸入e成績。單擊確定輸出等級。如下l private sub command8 click dim cj as string cj inputbox 請輸入m成績 do while not isnumeric cj msgbox 請輸入...
求解一道c 程式設計題,求解一道簡單的C語言程式設計題
麼誒節奏 include using namespace std int search int p1,int n,int p2 void print int p,int n int main int arr1 10 int arr2 int count search arr1,10,arr2 pri...
求解一道Python程式設計題,一道簡單的python程式設計題
雁西樓 斐波那契數列自第三個數開始,每個數均為之前兩個數的和。至少有兩種方法來實現它。最常見的利用迭代的方法,其核心思路是 fib n fib n 1 fib n 2 而在n 2時直接,沒有n 2,因此直接返回1 def fib num return 1 if n 2 else fib num 1 ...