C语言-goto语句


goto语句

1
2
3
goto there; // 跳转到there标签
xxx
there: x = 50;
1
2
3
4
5
6
7
if(x==50)
goto w;
else
goto j;

w:
xxx

本文标题:C语言-goto语句

文章作者:TTYONG

发布时间:2020年08月25日 - 15:08

最后更新:2020年08月29日 - 21:08

原始链接:http://tianyong.fun/c%E8%AF%AD%E8%A8%80-goto%E8%AF%AD%E5%8F%A5.html

许可协议: 转载请保留原文链接及作者。

多少都是爱
0%