其他分享
首页 > 其他分享> > C --goto跳转语句

C --goto跳转语句

作者:互联网

#include <iostream>
using namespace std;

void func(bool b) {
    if (b==true){
        goto label;
    }
    else {
        goto label1;
    }
label:
    cout << "真" << endl;
    return;
label1:
    cout << "假" << endl;
    return;
}

int main()
{
    /*
    goto语句:可以让CPU跳转到任何一条语句去执行
    语法:goto 标签
    */
    func(1);
    return 0;
}

 

 

 

标签:std,goto,--,label1,label,跳转
来源: https://www.cnblogs.com/liming19680104/p/13488523.html