Traditional Culture Encyclopedia - Traditional culture - Does java flow control structure include assignment

Does java flow control structure include assignment

Including.

idea

java fundamentals chapter 3 ------ process control

Jetiaming

Original

Following

0 Likes - 119 Reads

1 Process Control Structure

There are three types of process control structures in Java: sequential structure, Selection Structure, Loop Structure

Sequential Structure: Sequential structure refers to the program from top to bottom of the execution of each statement at a time, in the absence of any judgment and jump, all the previous structure is a sequential structure

Selection Structure:

Selection structure to determine the results of the conditions to execute different code. Java provides if control statements, switch statements to realize the selection structure

Looping structure:

Repeat the execution of a certain piece of code according to the judgment condition.Java provides, while statement, do-while statement, for statement to realize the looping structure

1.if control statements

The syntactic format of the if statement is as follows:

if(expression) {

Statement block

}

If is a keyword in java

Expression is a boolean type of expression that results in either true or false