• 2022-06-07
    Which of the following does not print the same sequence of numbers as the others?下列哪一个不打印与其他数字相同的数字序列?
    A: X = 5while (X < 6): print(X) X = X + 1
    B: X = 4while (X < 5): X = X + 1 print(X)
    C: X = 5repeat: print( X) X = X + 1 until (X > 6)