单项选择题

执行以下程序段后,x的值为( )。
Dim x As Integer,i As Integer
x=0
For i=20 To 0 Step -2
  x=x+i\5
Next i

A.16
B.17
C.18
D.19