谁能帮我看一下 为什么会输出这样的结果
#include<stdio.h>void main()
{ static char s[]="SSSWiL TECH1\1\11W\1WALLMP1";
int j;
char ch; clrscr();
for(j=2;(ch=s[j])!='\0';j++)
{ switch(ch)
{ case 'A':putchar('a');continue;
case '1':break;
case 1:while((ch=s[++j])!='\n'&&ch!='\0');
case 9:putchar('#');
case 'E':
case 'L':continue;
default:putchar(ch);continue;
}
putchar('*');
}
printf("\n");
}
输出:SWI TCH*#这个是TC运行结果 可是为什么会是*#呢