循环有三种
1,while(条件){循环体}
2,do{}while(条件);
3,for(初始化;判断条件;迭代器){}
foreach循环
int b[]={1, 2,
for(int a=1;b.lenght;a++){}
for( int aa:b){}
循环有三种
1,while(条件){循环体}
2,do{}while(条件);
3,for(初始化;判断条件;迭代器){}
foreach循环
int b[]={1, 2,
for(int a=1;b.lenght;a++){}
for( int aa:b){}