填空题

下面程序段运行后,变量X的值为【16】
Dim x AS Integer
Dim I AS Integer
x=0
for I=0 to 50 step 10
X=X+I。
next I
Print X

【参考答案】

150