Home> Common Problem> body text

What are the common if statements in computer programming?

青灯夜游
Release: 2023-01-29 16:31:50
Original
8723 people have browsed it

The common if statement in computer programming is a conditional judgment statement. The if statement is a selective branch structure. It selects the execution path based on clear conditions, rather than strictly following the order. In actual programming, the appropriate branch statement must be selected according to the program flow. It changes the execution according to the result of the condition. program; the simple syntax of the if statement is "if (conditional expression) {//code to be executed;}".

What are the common if statements in computer programming?

The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.

The common if statement in computer programming is a conditional judgment statement.

Conditional judgment statement

The conditional judgment statement is a selection branch structure. It selects the execution path based on clear conditions, rather than Execute strictly in sequence. In actual programming, appropriate branch statements must be selected according to the program flow. It is a program that changes execution according to the results of conditions.

The flow chart is as follows:

What are the common if statements in computer programming?

Conditional judgment statement is a frequently used statement form in the program development process. It is the same as most programming languages. In JavaScript There are also conditional judgment statements. The so-called conditional judgment refers to the program performing different operations based on different conditions, such as displaying different content based on age, and judging whether the operation is successful or failed based on a Boolean value of true or false, etc.

if statement

The if statement is the simplest conditional judgment statement in JavaScript. The syntax format is as follows:

if(条件表达式){ // 要执行的代码; }
Copy after login

When the conditional expression is established, that is, the result is a Boolean value true, the code in { } will be executed.

The sample code is as follows:

    JavaScript 
    
Copy after login

The running result is as shown below:

What are the common if statements in computer programming?

if else statement

The if else statement is an upgraded version of the if statement. It can not only specify the code to be executed when the expression is true, but also the code to be executed when the expression is not true. The syntax format is as follows :

if(条件表达式){ // 当表达式成立时要执行的代码 }else{ // 当表达式不成立时要执行的代码 }
Copy after login

The sample code is as follows:

    JavaScript 
    
Copy after login

The running result is as shown below:

What are the common if statements in computer programming?

##if else if else statement

Both if and if else statements have only one conditional expression, and if else if else statement is their more advanced form, in if else if else statement allows you to define multiple A conditional expression, and executes the corresponding code according to the result of the expression. The syntax format is as follows:

if (条件表达式 1) { // 条件表达式 1 为真时执行的代码 } else if (条件表达式 2) { // 条件表达式 2 为真时执行的代码 } ... else if (条件表达式N) { // 条件表达式 N 为真时执行的代码 } else { // 所有条件表达式都为假时要执行的代码 }
Copy after login

Tip: During the execution of the if else if else statement, when a established conditional expression is encountered , the code in the following { } will be executed immediately, and then the entire if else if else statement will be exited. If there is a valid conditional expression in the subsequent code, it will not be executed.

The sample code is as follows:

    JavaScript 
    
Copy after login

The running results are as shown below:

What are the common if statements in computer programming?

Notes

When using nested if else, if there is only one line of statement, it should be wrapped in curly brackets to avoid condition ambiguity.

For example, the following nested if else can easily lead to misunderstanding:

if(0) if(1) console.log(1); else console.log(0);
Copy after login

For the above code, the JavaScript interpreter will interpret it according to the following logical level based on the proximity principle:

if(0) if(1) console.log(1); else console.log(0);
Copy after login

So using braces can avoid many problems:

if(0){ if(1) console.log(1); }else{ console.log(0); }
Copy after login
[Recommended learning:

javascript advanced tutorial]

The above is the detailed content of What are the common if statements in computer programming?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!