下記のコードを実行したとき、表内のセルの値が変わるセルの個数として正しいものを、
選択肢の中から1つ選びなさい。
Sub Exam1()
Dim i As Long
For i = 2 To Cells(Rows.Count, 1).End(xlUp).Row
If Cells(i, 1) “Orange” Then
If Cells(i, 3) =“a” Or Cells(i, 3) = “b” Then
Cells(i, 2).Value = Cells(i, 2).Value / 2
End If
End If
Next i
End Sub
