小涛家的冰箱冷藏室温度是3℃,冷冻室的温度是-2℃,则他家冰箱冷藏室温度比冷冻室温度高( )
A:3℃
B:-3℃
C:5℃
D:-7℃
Private Sub Command1_Click()
Dim i As Integer, c As Integer, n As Integer
c = 0: n = 10
For i = 1 To 10 Step 2
If n Mod i = 0 Then
c = c * i
Else
c = c + i
End If
Next i
Text1.Text = Str(c)
End Sub