1樓:匿名使用者
1. x = val(inputbox("input x: "))if x < 10 then y = abs(x)if x <= 20 then y = sqr(3 * x - 1)if x > 20 then y = 3 * x + 2debug.
print y
2. x = val(inputbox("input x: "))if x < 10 then
y = abs(x)
elseif x <= 20 then y = sqr(3 * x - 1)
elseif x > 20 then y = 3 * x + 2end if
debug.print y
3. x = val(inputbox("input x: "))select case x
case x < 10
y = abs(x)
case <= 20
y = sqr(3 * x - 1)
case else
y = 3 * x + 2
end select
debug.print y
2樓:匿名使用者
1x=val(inputbox("輸入:"))if x<10 then y=abs(x)if x>=10 and x<=20 then y=3*x-1if x>20 then y=3*x+2?y2if x<10 then
y=abs(x)
elseif x<=20 then
y=3*x-1
else
y=3*x+2
endif?y3
select case x
case is<10
y=abs(x)
case 10 to 20
y=3*x-1
case else
y=3*x+2
end select?y
3樓:守護狼魂
(1) if
endif
ifendif
ifendif
(2)if
else if
else
endif
(3)select case x
vb程式設計,什麼是VB程式設計?
1設計引數介面2 設計介面上各個控制項屬性3 編寫程式 4除錯和儲存 什麼是vb程式設計?visual basic程式設計是basic程式語言。vb擁有圖形使用者介面 gui 和快速應用程式開發 rad 系統,可以輕易的使用dao rdo ado連線資料庫,或者輕鬆的建立active x控制項,用於...
VB程式設計
private sub command1 click dim i as integer dim a3,a7 as integerfor i 1 to 100 if i mod 3 0 then a3 a3 1 end if if i mod 7 0 then a7 a7 1 end if next ...
vb程式設計提高應該看些什麼,什麼叫做「vB程式設計」。
請問 vb的基礎東西我已經學完了 學會了?如果false的話請繼續努力,把基礎的學會,何為會?古人有云 讀書破萬卷,下筆如有神!事實上,基礎的我都還不會,o o哈哈 不知道你說的 基礎東西 是什麼東西?這裡我暫且把我認為是基礎的東西 你認為是基礎的東西,那麼我覺得你想提高的話你應該看的東西有 1 標...