JS implements the rock-paper-scissors game

JS implements the rock-paper-scissors game

This article example shares the specific code of JS to implement the rock-paper-scissors game for your reference. The specific content is as follows

1. Simple version of rock-paper-scissors game

Write a rock-paper-scissors game between the user and the computer. The user inputs scissors, rock, or paper, and the input is compared with the computer's punch to determine the winner.

analyze:

1. First, use the prompt() method to create a user input box;
2. The core is to use the Math.random() function, which takes a random number between [0,1). This function can be used to make the computer punch randomly;
3. Use if-else statements to determine the various results that may occur and make decisions;

The specific code is as follows:

/**
 * a is the content entered by the user * b is the random content of the computer */
var a = prompt('Please enter 1: Scissors 2: Rock 3: Paper');
var b = Math.random();
if (b < 0.3) {
    if (a == 1) {
        alert('The computer made the scissors, you made the scissors, it's a tie');
    } else if (a == 2) {
        alert('The computer played scissors, you played rock, you lose');
    } else {
        alert('The computer played scissors, you played cloth, you win');
    }
} else if (b < 0.6) {
    if (a == 1) {
        alert('The computer played rock, you played scissors, you lose');
    } else if (a == 2) {
        alert('The computer's stone and your stone are tied');
    } else {
        alert('The computer played rock, you played paper, you win');
    }
} else {
    if (a == 1) {
        alert('The computer played paper, you played scissors, you win');
    } else if (a == 2) {
        alert('The computer played paper, you played stone, you lost');
    } else {
        alert('The computer made the cloth, you made the cloth, it's a tie');
    }
}

2. Advanced version of rock-paper-scissors game

Record the system and player scores, the winner will get 1 point, and the draw and loser will not get any points.

analyze:

1. Two more variables need to be added to the original code, one to store the user's total score and the other to store the computer's total score;
2. A for loop is needed to limit the number of games;
3. Use the alert() statement to output the result score;

The specific code is as follows:

var sum=0;//people's scorevar snm=0;//computer's scorefor(var i=0;i<3;i++){
    var a=prompt('Please enter 1, scissors 2, rock 3, cloth');
    var b=Math.random();
    if (b < 0.3) {
        if (a == 1) {
            alert('The computer made the scissors, you made the scissors, it's a tie');
        } else if (a == 2) {
            snm++;
            alert('The computer played scissors, you played rock, you lose');
        } else {
            sum++;
            alert('The computer played scissors, you played cloth, you win');
        }
    } else if (b < 0.6) {
        if (a == 1) {
            snm++;
            alert('The computer played rock, you played scissors, you lose');
        } else if (a == 2) {
            alert('The computer's stone and your stone are tied');
        } else {
            sum++;
            alert('The computer played rock, you played paper, you win');
        }
    } else {
        if (a == 1) {
            sum++;
            alert('The computer played paper, you played scissors, you win');
        } else if (a == 2) {
            snm++;
            alert('The computer played paper, you played stone, you lost');
        } else {
            alert('The computer made the cloth, you made the cloth, it's a tie');
        }
    }
}
alert('computer'+snm +'your score'+sum);

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Writing a rock-paper-scissors game in JavaScript
  • JavaScript based on object-oriented implementation of the rock-paper-scissors game
  • js implements the rock-paper-scissors game
  • JavaScript implementation of the rock-paper-scissors game source code sharing
  • HTML+JS to implement the sample code of rock-paper-scissors game

<<:  Solve the grouping error Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated in MySQL versions greater than 5.7

>>:  Nginx implements dynamic and static separation example explanation

Recommend

MySQL 5.7.20 installation and configuration method graphic tutorial (win10)

This article shares the installation and configur...

Summary of several situations in which MySQL indexes fail

1. Indexes do not store null values More precisel...

Web front-end performance optimization

Web front-end optimization best practices: conten...

How to use VIM editor in Linux

As a powerful editor with rich options, Vim is lo...

JavaScript Closures Explained

Table of contents 1. What is a closure? 1.2 Memoi...

About the problem of dynamic splicing src image address of img in Vue

Let's take a look at the dynamic splicing of ...

Steps to build a file server using Apache under Linux

1. About the file server In a project, if you wan...

Steps for Docker to build its own local image repository

1. Environment and preparation 1. Ubuntu 14.04 2....

Implementing the preview function of multiple image uploads based on HTML

I recently wrote a script for uploading multiple ...

Detailed explanation of mysql deadlock checking and deadlock removal examples

1. Query process show processlist 2. Query the co...

How to use display:olck/none to create a menu bar

The effect of completing a menu bar through displ...

Explore the truth behind the reload process in Nginx

Today's article mainly introduces the reload ...

Detailed explanation of Redis master-slave replication practice using Docker

Table of contents 1. Background 2. Operation step...