#include
void main()
{
int k=5,n=0;
while(k>0)
{
switch(k)
{
case 1:
n+=k;
break;
default :
break;
}
k--;
}
}
default : 应放在最后。
???
后面的呢?