单项选择题

下列的程序段执行后,x的值为()。Private Sub Command1_Ciick()x =0 for i =1 To 10 for j = i To 10 x=x+1 Next jNext i Print xEnd Sub

A.50
B.55
C.5
D.105