试题 试卷
题型:单选题 题类:常考题 难易度:普通
【gb】高中信息技术综合库——基本运算及表达式
If x And y Then x=0
Else x=1后x的结果为( )。
a=a-b
a=a*b
from random import randint
res=" "
i,j=0,len(s)-1
while i<len(s) and j>=i:
if randint(0,1) == 0: #randint(0,1)随机生成 0 或 1
res+=s[i]
i+=1
else:
res+=s[j]
j-=1
试题篮