int i=0,j=1,k=1;switch(i){case 1: if(j!=0) k+=1;else k+=2;break;case 2: k+=3; break;default: k+=4;最后输出的k为5为啥?😩
i=0;所以执行defaultk+=4k=5