goto.c
#include <stdio.h> int main() { int a = 2; there: a += 2; if (a > 10) { goto end; } else { goto there; } end: printf("end"); }
暂无评论,快来发表第一条评论吧!