计算机中地址线数目决定了CPIJ可直接访问存储空间的大小。若某计算机地址线数目为32,则其能访问的存储空间大小为______MB。
查看答案
在Windows环境下,将当前活动窗口最小化后,则该窗口对应的程序被转入______继续运行。
People born in autumn live longer than those born in spring because______.
A. a mother giving birth in spring has less nutrition during her pregnancy
B. a mother giving birth in autumn eats more vitamins during the last stage of her pregnancy
C. a baby born in spring receives no protection from infections
D. a baby born in autumn is never subject to any infections
English people often take umbrellas with them when they go out because they don't want to
A. seized
B. got
C. captured
D. caught
下列程序用来计算1+2+…n,当和大于100时停止计算,请填空。
Private Sub Form_Click()
Dim n as integer,s as integer,I as integer,k as integer
s=0
k=0
n=inputbox(″请输入n的值)
For i=1 to 100
k=k+1
s=s+I
【 】
Next i
Print s
End Sub