Imports System, Microsoft.VisualBasic
Const ROCK As Integer = 1
Const PAPER As Integer = 2
Const SCISSORS As Integer = 3
Console.WriteLine("Choose (R)ock, (P)aper, or (S)cissors: ")
userChoice = Console.ReadLine()
comChoice = Int(Rnd()*3+1)
If userChoice = "R" Or userChoice = "r" Then
result = "Computer chose Rock: It's a Draw!"
ElseIf comChoice = 2 Then
result = "Computer chose Paper: You Lose!"
ElseIF comChoice = 3 Then
result = "Computer chose Scisors: You Win!"
ElseIf userChoice = "P" Or userChoice = "p" Then
result = "Computer chose Rock: You Win!"
ElseIf comChoice = 2 Then
result = "Computer chose Paper: It's a Draw!"
ElseIf comChoice = 3 Then
result = "Computer chose Scisors: You Lose!"
ElseIf userChoice = "S" or userChoice = "s" Then
result = "Computer chose Rock: You Lose!"
ElseIf comChoice = 2 Then
result = "Computer chose Paper: You Win!"
ElseIf comChoice = 3 Then
result = "Computer chose Scisors: It's a Draw!"
console.WriteLine(result)