循环结构特点:循环条件和循环操作常用循环结构:for、for-in、while、do-while
for循环123for(初始部分;循环条件;条件迭代){ //循环执行的语句 }
简单for循环实例:输出0-10
123for
2021-01-30