下列代码段运行后“i”和“X”的值是多少?Dim i As IntegerDim X As Integeri = 1X = 2Do i = i + 1 X = X + iLoop Until i >= 7