go命令模拟循环语句

循环的实现

除了do—while 其他都是反条件

while语句的实现

WHILE_BEGIN :
    if(i >= 10)
    {
        goto WHILE_END ;
    }
    printf(“a”);
    i++;
goto WHILE_BEGIN  ;
goto WHILE_END :    

for语句的实现

FOR_INIT:

    i = 1goto FOR_CMP;

FOR_SETP:

    i++;

FOR_CMP:

    if(i >= 10)

    {

        goto FOR_END ;

    }

    printf(“a”);

    goto FOR_SETP;

FOR_END;        

 

posted @ 2020-09-02 09:54  特权E5  阅读(156)  评论(0编辑  收藏  举报