'サンプルコード Option Explicit Randomize ' 乱数を比較 Dim rand rand = int(rnd*2) + 1 MsgBox "1~2までの数を入力してね" ' チェックボックスの入力 Dim strInput strInput = inputbox("予想は?") ' randの値を比較 Dim iCheck iCheck = CInt(strInput) If rand = iCheck Then MsgBox "乱数:" & rand & " " & "正解!:" & iCheck Else MsgBox "乱数:" & rand & " " & "不正解!:" & iCheck End If