while循环语句 while(条件表达式) { 执行语句 } for循环语句 for(表达式1;表达式2;表达式3){ 语句 } do while 循环语句 do { 执行语句 } while(条件表达式);