试题

试题 试卷

logo

题型:单选题 题类: 难易度:普通

浙江省嘉兴市2023年9月高三信息技术模拟检测卷

长度为5的循环队列que,que[0]至que[4]的值依次为'a' ,'b' ,'c' ,'d','e',执行如下程序段后,输出的最后一个字符为(   )

n= 5

head=0

tail=4

que=['a' , 'b' ,'c' ,'d' ,'e' ]

while head!=tail:

    if head%4==0:

        print (que[head])

    else:

        tail=(tail+1)%n

        que[tail]=que[head]

    head= (head+1)%n

print (que[head])

A、b B、c C、d D、e
返回首页

试题篮