int a = 1,b=2;int a = 1;
int b = 2;
上面两种声明变量的方式有上面区别!for(int a =1, b = 20; a < b; a ++, b -- ){
}