#include <stdio.h>
int main(void)
{
char ch;
while((ch=getchar())!='#')
{
if(ch=='\n')
continue;
printf("Step1\n");
if(ch=='c')
continue;
else if(ch=='b')
break;
else if(ch=='h')
goto laststep;
printf("Step2\n");
laststep:printf("Step3\n");
}
printf("Done\n");
return 0;
}
这个if(ch=='c')的continue怎么连
printf("Step2\n");
laststep:printf("Step3\n");
这两个都能跳过的
还有这个if else嵌套语句里的break
else if(ch=='b')
break;
怎么直接跳出while循环了