试题 试卷
题型:单选题 题类:常考题 难易度:普通
浙江省衢州市2020-2021学年高二下学期信息技术期末6月教学质量检测试卷
X=a(1):s=0
For i=2 To 5
If a(i) > x Then
x = a(i)
ElseIf a(i) < x Then
s = s+a(i)
End If
Next i
数组元素a(1)~a(5)的值依饮为“1,2,3,2,1”,执行该程序段后s的值为( )
假设银行的年存储利率为3%,如果现在存储10000元钱,问多少年后连本带利超过12000元。设定:连本带利=本金*(1+利率)∧年数
假设n年后连本带息超过12000,根据题意得出数学关系式:10000*(1+3%)∧n>12000,求最小的n。
(参考程序)
Dim s as single
Dim r as single
Dim n as integer
s=10000
r=0.03
n=0
Do while
n=n+1
s=s*(1+r)
Loop
Print n;“年后”:“连本带利超过”;s
根据上述回答下列问题:
s="ABCDEFGH"
i=1
Do While i<=Len(s)
If i mod 2=0 then
s=mid(s, i+1, len(s)-i) & mid(s, 1, i-1)
i=i+1
Text1.text=s
s1="today"
s2=""
for c in s1:
s2=c+s2
print(s2)
请回答下列问题:
s=float(input("请输入分数:"))
if 90<=s<=100:
print("A等第")
elif 75<=s<90:
print("B等第")
elif 60<=s<75:
print("C等第")
elif s<60:
print("D等第")
试题篮