无条件跳转,尽量少用 #include <stdio.h>int main(){ goto End; //无条件跳转到End的标识 printf("11111111111\n");End: printf("22222222222\n"); return 0;} 控制台: 22222222222