• 2022-06-16
    下面代码中输出结果为0、1、2三个数字的有(_____)。
    A: for i in range(3):
    print(i)
    B: i=1
    while i<3:
    print(i)
    i+=1
    C: i=3
    while i>1:
    i=i-1
    print(3-i)
    D: for i in range(3,0,-1):
    print(3-i)