do{
static int a=5;
a--;
printf("%d\n",a);
}while(a>=1);
为什么这么写会导致死循环;
输出到负数还在输出
你每次循坏都会从新定义了a=5,,a就会永远大于1了
没有结束break