●確認テスト3

【問題文】

2行目のコメントアウトを解除しなさい。

Sub TestComment3()
    'Cells(1, 1) = "加藤"
End Sub

【解答例】

Sub TestComment3()
    Cells(1, 1) = "加藤"
End Sub