/*常用作死循环*/ while(条件){ //循环操作 }
/*至少都会循环一次*/ do{ //循环操作 }while(循环条件);
/*常用作嵌套*/ for( 循环变量初值; 循环变量的判断; 循环变量的变化){ //循环操作 }