1、for循环;
for(初始值;循环条件;循环步长)
{
循环体;
}
2、do while;
初始值;
do{
循环步长;
}
while(循环条件);
3、while;
while(循环条件)
{