第乙個頁面:
<%
//本頁面用於查詢成績(分數段)的操作
response.write("成績查詢(分數段)")
%>
第二個頁面(顯示查詢到的內容):
<%
//本頁面用於顯示查詢成績(分數段)後的列表
dim list(3,3) //定義乙個四行四列的二維陣列
dim row,column //定義二維陣列的行與列
//存放從scoresearching頁面傳過來的引數
dim inputminscore
dim inputmaxscore
inputminscore=request.form("inputminscore")
inputmaxscore=request.form("inputmaxscore")
//初始成績化列表
list(0,0) = "mike"
list(0,1) = 80
list(1,0) = "jack"
list(1,1) = 62
list(2,0) = "lucy"
list(2,1) = 98
list(3,0) = "elva"
list(3,1) = 77
response.write("")
// !以上執行全部正確
response.write("姓名" & " " & "分數" & "
")//尋找符合搜尋條件的分數並輸出
for row = 0 to 3
// !此行有錯誤
if (list(row,1)>=inputminscore and list(row,1)<=inputmaxscore) then
response.write(list(row,0) & " " & list(row,1) & "分" & "
")end if
next
%>
個人感覺出錯在注釋「!此行有錯誤」這個地方,請求高手幫助,謝謝!
php用if語句實現查詢 用if條件語句
使用專業的if條件語句,可以更好的整理指令碼結構,似的層此分明,清晰易懂。if語句的結構 一 單分支的if語句 結構 if 條件測試操作 例如 if 磁碟已用空間 then 命令序列 then 報警 二 雙分支的if語句 結構 if 條件測試操作 例如 if 80埠是否在監聽 then 命令序列1 ...
Lint Code 4 用C 實現查詢醜數
這是lintcode上的一道題 原題位址 醜數 是素因子只有2,3,5的數,有的人說這句話不好理解,其實意思就是乙個數有很多因子,這些因子中如果有素數,只能是2,3,5,舉個例子,14有因子7,7是14的素因子,不在2,3,5的範圍內,故14不是醜數。思路就不說了,網上都是說醜數是之前的醜數的2,3...
Oracle實現查詢時間段的Sql語句兩法
oracle實現查詢時間段的sql語句兩法,相比oracle要查詢時間段的sql語句還是與sql server的sql語句有區別的,下面舉兩種方法來說明在oracle是如何查詢時間段的 第一種方法 between and select from location t where locationda...