1樓:張小剛愛生活
簡單的:if 5>4 then "5大於4"
常規的:if 5>4 then
"5大於4"
"5小於4"
end if
多個條件:if 5>5 then
"5大於5"
elseif 5=5 then
"5等於5"
"5小於5"
end if
巢狀的話把 其中的一個 換成一個if * then
elseend if即可。
a=5if a>0 then
if a=5 then
"a等於5"
"a不等於5"
end if
"a小於0"
end if
2樓:匿名使用者
thetime=hour(time)
if thetime=>0 and thetime<6 thenstr="凌晨好"
elseif thetime>=6 and thetime<12 then
str="上午好"
elseif thetime=>12 and thetime<14 then
str="中午好"
elseif thetime=>14 and thetime<19 then
str="下午好"
elseif thetime=>19 thenstr="晚上好"
end if
str
3樓:匿名使用者
if 變數=值 then
if 變數=值 then
執行語句。else
執行語句。end if
else執行語句。
end if
4樓:班丘皖靜
if 條件 then
if 條件 then
語句 else
語句 end if
if 條件 then
語句 else
語句 end if
elseif 條件 then
語句 else
語句 end if
asp 兩個if巢狀使用怎麼寫?
5樓:匿名使用者
你指的是if裡面是if?
if 條件 then
if 條件 then
執行語句。end if
end if
asp中巢狀if的語法是什麼?
6樓:匿名使用者
//第一個對應。
if then
...else
其實這裡的內容就是第二個對應。
end if
//第二個對應。
if a(".5 then
sql2=".
end if
關於asp的for迴圈中巢狀if語句的問題
7樓:sql的藝術
一般只用判斷分割後的陣列內是否為空。
hire_workadd =
pstring=split(trim(request("workadd"))
for numm=0 to ubound(pstring)if len(pstring(numm))>0 then你的處理**。
end if
next
asp中if語句的巢狀使用
8樓:匿名使用者
(1)if ..then
(2)if ..then
(2)elseif ..then
(2)else
(3) if ..then
(3) else
(3) end if
(2)end if
(1)elseif ..then
(4)if ..then
(4)elseif ..then
(4)else
(4)end if
(1)else
(1)end if
這樣使用,是可以試試。
寫if的時候注意層次,一個if完成的時候就應該有個end if,而不是一起結束if
9樓:
你排版很亂,看不太清楚。
asp 裡面多次用if 語句判斷怎麼寫呢?
10樓:網友
可以if hd=134 then
"移動"elseif hd=130 then
"聯通"elseif hd=189 then
"電信"end if
條件,自己補充,,,如果134這些數字不是數字,那用雙引號引上,,用做字串對比。。
意思是如果 條件 就。
否則再如果 條件 就。
否則再如果 條件就。
否則結束如果。
11樓:育知同創教育
1. if..end if
<%dim mynum:mynum = 8
if mynum = 8 then
"你輸入正確!")end if
%> if
<%dim mynum:mynum = 10
if mynum = 10 then
"你輸入正確!")else
"你輸入錯誤!")end if
%> if<%
dim mynum:mynum = 10
if mynum > 10 then
"大於10")elseif mynum = 10 "等於10")else
"小於10")end if
%>4.巢狀使用。
<%dim mynum:mynum = 10
if mynum>=0 then
if mynum=0 then
執行語句1else
執行語句2end if
else執行語句3
end if
asp if語句巢狀問題,請教高手!!!
12樓:
後的地址是不是錯了?是不是又回到這個新增頁了。。如果又回到新增頁而沒有提交資料就會出現你說的錯誤了。
asp 中 if else 巢狀中一個簡單的問題,幫忙看下哪兒出錯了
13樓:匿名使用者
<% username %>寫法錯誤,這不是一個完整的語句。改為。
<%=username %>
VB中for語句等重的巢狀語句的執行順序問題
lz你認真按我的要求做,對它的執行順序就一目瞭然了!1 在窗體上畫一個列表框 listbox 一個按鈕 commandbutton 2 貼上以下 之一 3 執行並單擊按鈕,執行的順序就在列表框,這樣你就可以清楚地看到 for語句等重的巢狀語句的執行順序 了 1 private sub command...
C語言if巢狀if,C語言裡面if語句的巢狀看不懂
printf 請輸入a的值 scanf d a if a 10 a 0的時候,明顯符合a 10條件,但是不符合裡面巢狀的a 1條件,不做任何操作。if a 1 t 1 else t 2 printf 請輸入a的值 scanf d a if a 10 a 100,第一步驗證就不符合條件,又沒有else...
這個sql語句怎麼寫?怎麼寫sql的語句?
select id,userid,platform,time,reward serven,reward thirty from kids activity order by reward thirty desc不知道你是不是這個意思。按,reward thirty排序。select count t2...