How to use javascript to do simple algorithms

How to use javascript to do simple algorithms

1 Question

As we all know, whether it is Pycharm , IDLE or java , it can calculate simple algorithms, such as addition, subtraction, multiplication and division. However, in Hbuilder, javascript can also be used to calculate addition, subtraction, multiplication and division of numbers.

For example, we calculate: Assume y=5, calculate x=y+2, and display the result.

2 Methods

First, use the <p></p> tags to write the algorithm question title. Then use the <button></button> tag to create an event, and the name after onclick in the tag must be added with (). Then write a <p id=></p> to add an id to the p tag to display the answer, and the subsequent commands are identified by the id. Finally, create variables in <script></script> and use var to create variables.

3 Experimental results and discussion

Through experiments and practice, it is proved that the proposed method is effective and can solve the problem raised at the beginning.

<!DOCTYPE html>

< html >

< head >

< meta charset = "UTF-8" >

< title ></ title >

</ head >

< body >

< p >Assume y=5, calculate x=y+2, and display the result. </ p >

< button onclick = " showAnswer () " > Click here </ button >

< p id = "demo2" ></ p >

< script type = "text/javascript" >

var y = 5 ;

var x = y + 2 ;

function showAnswer (){

document .getElementById( "demo2" ).innerHTML = "x=" + x

}

</ script >

</ body >

</html
>

Conclusion:

We also need to pay attention that in the command getElementById(), when adding the name of the previous id in the brackets, you must add quotation marks, otherwise it will not be recognized as an id.

This is the end of this article on how to use javascript to do simple algorithms. For more relevant content about using javascript to do simple algorithms, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Using JS to implement binary tree traversal algorithm example code
  • How to use JavaScript to implement sorting algorithms
  • JavaScript programming through Matlab centroid algorithm positioning learning
  • Binary Search Tree Algorithm Tutorial for JavaScript Beginners
  • Summary of seven sorting algorithms implemented in JavaScript (recommended!)
  • A brief discussion on an efficient algorithm for constructing tree structures in JavaScript
  • How to Learn Algorithmic Complexity with JavaScript
  • js implements the algorithm for specifying the order and amount of red envelopes

<<:  12 Laws of Web Design for Clean Code [Graphic]

>>:  Pure CSS to achieve cool charging animation

Recommend

Overview of MySQL Statistics

MySQL executes SQL through the process of SQL par...

Ubuntu20.04 VNC installation and configuration implementation

VNC is a remote desktop protocol. Follow the inst...

Application of mapState idea in vuex

Table of contents 1. Map method 2. Application ba...

5 Ways to Clear or Delete Large File Contents in Linux

Sometimes, while working with files in the Linux ...

How to use the Clipboard API in JS

Table of contents 1. Document.execCommand() metho...

Implementation of TCPWrappers access control in Centos

1. TCP Wrappers Overview TCP Wrappers "wraps...

How to use Dockerfile to create a mirror of the Java runtime environment

The current environment is: Centos 7.5 docker-ce ...

10 key differences between HTML5 and HTML4

HTML5 is the next version of the HTML standard. M...

How to allow remote access to open ports in Linux

1. Modify the firewall configuration file # vi /e...

Docker's flexible implementation of building a PHP environment

Use Docker to build a flexible online PHP environ...

Manually implement js SMS verification code input box

Preface This article records a common SMS verific...

How to set background color and transparency in Vue

Background color and transparency settings As sho...

How to modify the group to which a user belongs in Linux

Modify the group to which a user belongs in Linux...