当前位置: 高中信息技术 / 单选题
  • 1. (2022高二上·余姚期中) 某短信平台对短信内容长度进行审查,超过 100 个字符的短信将被过滤掉, 将符合要求的短信根据推送的时间逐一发送。

    #所有短信按推送过来的时间已存入列表 s 中,共有 1000 条待发送的短信

    q=[""]*1000

    head=0;tail=0

    for i in range(1000):

        if len(s[i])<=100:

               ①   

                ②     

    while    ③   :

        print("现在发送的消息内容为:",q[head])

    head+=1

    上述程序段中划线处可选语句为:

    ①tail=tail-1②tail=tail+1 ③q[tail]=s[i] ④head<=tail ⑤head!=tail

    则①②③处的语句依次为(    )

    A . ②③⑤ B . ③②④ C . ③②⑤ D . ③①⑤

微信扫码预览、分享更方便