日期:2014-02-11  浏览次数:20877 次

<%
'*********************************************
' THIS IS A SIMPLE GAME OF ROCK SCISSORS PAPER
' FEEL FREE TO DO WHATEVER YOU LIKE WITH THIS
' SCRIPT! -IAN S. CARROLL
'*********************************************



'*********************************************
' THIS FUNCTION GENERATES A RANDOM NUMBER
'*********************************************
Function computerChooses()
Dim randomNum
Dim choice
randomize
randomNum = int(rnd*15)+1

If randomNum = 1 OR randomNum = 3 OR randomNum = 7 OR randomNum = 8 OR randomNum = 15 OR randomNum = 12 Then
choice = "R"
ElseIf randomNum = 2 OR randomNum = 6 OR randomNum = 11 OR randomNum = 13 Then
choice = "S"
Else
choice = "P"
End If

computerChooses = choice
End Function



'*********************************************
' THIS FUNCTION SIMPLY DETERMINES THE WINNER
' OF THE GAME
'*********************************************
Sub determineWinner(playerChoice, computerChoice)
Const Rock = "R"
Const Scissor = "S"
Const Paper = "P"
Dim tempPlayer, tempComputer

If playerChoice = Rock Then

If computerChoice = Scissor Then
%>
            <P><CENTER>
            <IMG SRC="http://www.163design.net/a/y/images/rock_beats_scissors.gif">

            Your ROCK crushed the computer's SCISSORS!"</CENTER>
            <%
End If

ElseIf playerChoice = Scissor Then

If computerChoice = Paper Then
%>
            <P><CENTER>
            <IMG SRC="http://www.163design.net/a/y/images/scissors_beats_paper.gif">

            Your SCISSORS cut up the computer's PAPER!</CENTER>
            <%
End If

ElseIf playerChoice = Paper Then

If computerChoice = Rock Then
%>
            <P><CENTER>
            <IMG SRC="http://www.163design.net/a/y/images/paper_beats_rock.gif">

            Your PAPER stumped the computer's ROCK!</CENTER>
            <%
End If

ElseIf playerChoice = computerChoice Then
%>
        <p><CENTER>
        <IMG SRC="http://www.163design.net/a/y/images/tie.gif">

        We seem to have a tie!</CENTER>
        <%
End If


If computerChoice = Rock Then

If playerChoice = Scissor Then
%>
            <P><CENTER>
            <IMG SRC="http://www.163design.net/a/y/images/rock_beats_scissors.gif">

            The computer's ROCK crushed your SCISSORS!</CENTER>
            <%
ElseIf playerChoice = computerCh