while循环 while(条件表达式) { 语句块; } do-while循环 do { 语句块; }while(条件判断语句) for循环 for(表达式1;条件表达式;表达式2) { 语句块; }