顺序结构,就是把工作分成若干个步骤,然后让计算机按步骤依次执行。
对于代码而言,顺序结构就是从上到下依次执行每一条语句。
#include<stdio.h>
int main(){
//The steps of putting an elephant into the fridge.
printf("First, open the fridge door.\n");
printf("Second, put the elephant into it.\n");
printf("Finally, close the fridge door.\n");
return 0;
}
顺序结构的核心在于计算。它不需要任何选择判断(选择结构或叫分支结构),也不涉及重复执行某段代码(循环结构),就是纯粹的“一步一个脚印”地往下走,走到生命的尽头。