试题

试题 试卷

logo

题型:单选题 题类: 难易度:困难

浙江省2023年10月高三信息技术强基联盟统测卷

有如下 Python 程序段:

a=[i for i in range(1,7)]

b=[0]*6

head, tail=0,0

for i in range(1,7):

    cnt=1

    while cnt<i:

        a[tail]=a[head]

        head=(head+1)%6

        tail=(tail+1)%6

        cnt+=1

    b[a[head]- 1]=i

    head=(head+1)%6

执行该程序段后, b[5]的值为(         )

A、2 B、3 C、4 D、5
举一反三
返回首页

试题篮