组卷题库 > 高中信息技术试卷库
试题详情
长度为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
知识点
参考答案
采纳过本试题的试卷
教育网站链接