s = 2*Cint(a)
If s > 5 Then
s = s - 3
If s > 4 Then
s = s + 1
Else s = s - 1
End If
4
3
2
1
C
设 s="abcdABCD",执行以下语句后,输出结果是()。
x = InStr(s,"A") 'x = 5
If x = 1 Then
y = "*"
Else
If x = 2 Then
y = "**"
Else
If x = 3 Then
y = "***"
Else
y = "****"
End If
End If
End If
Document.Write(y)
x = InputBox("输入一个字符串")
n = Len(x)
y = _______
Document.Write("组成的新字符串为:" & y)
Right(x, n-1)
Mid(x, 2, n-2)
Mid(x, 2, n-1)
Mid(x, n-2)
B
下列程序执行后,输出结果是()。
<HTML>
<HEAD>
<TITLE>过程试题</TITLE>
<meta http-equiv="x-ua-compatible" content="IE=8">
<SCRIPT type=“text/VBScript">
Sub fnmax(a,b,c)
If a>b Then
c = a
Else c = b
End If
End Sub
</SCRIPT>
</HEAD>
<BODY>
<SCRIPT type=“text/VBScript">
Dim a, b, c
a = 3 : b = a*2
Call fnmax(a, b, c)
Document.Write(c + 1)
</SCRIPT>
</BODY>
</HTML>
3
6
7
8
C
下列程序运行后,假设通过输入对话框输入数值67,则显示结果是()。
<HTML>
<HEAD>
<TITLE> 数据处理 </TITLE>
<meta http-equiv="x-ua-compatible" content="IE=8">
<SCRIPT type=“text/VBScript">
Sub subcal(a)
b = a \ 6 + a Mod 13 '整除 67\6 = 11 模除 67%13 = 2
Document.Write(b)
End Sub
</SCRIPT>
</HEAD>
<BODY>
<SCRIPT type=“text/VBScript">
Dim x
x = Cint(InputBox("输入一个数"))
Call subcal(x)
</SCRIPT>
</BODY>
</HTML>
Dim x, s
x = Cint(InputBox("输入考试分数"))
If x >= 70 Then
If x <= 80 Then
s = "中"
Else
s = "优良"
End If
Else
If x >= 60 Then
s = "及格"
Else
s = "不及格"
End If
End If
Document.Write("该成绩等级是:" & s)
<SCRIPT type=“text/VBScript">
Dim sum, s, c
sum = 0
s = 1 's表示加或减运算
For c = 1 To 10000
sum = sum + 1 / (c*c + s)
s = -s '交替改变正、负号
Next
Document.Write("sum =" & int(100*sum)/100) '1.22
</SCRIPT>
计算 s = 1! + 2! + 3! + …… 10! 的值。
参考代码
s = 0
For j = 1 To 10
t = 1
For k=1 To j
t = t * k
Next
s = s + t
Next
Document.Write(s)