zoukankan      html  css  js  c++  java
  • c++程序—goto

    #include<iostream>
    using namespace std;
    #include<string>
    #include<ctime>
    
    int main()
    {
        //goto语句
        cout << "1.xxxxxx" << endl;
    
        cout << "2.xxxxxx" << endl;
    
        goto FLAG;
    
        cout << "3.xxxxxx" << endl;
    
        cout << "4.xxxxxx" << endl;
    
        FLAG:
    
        cout << "5.xxxxxx" << endl;
        
        system("pause");
        return 0;
    
    }
  • 相关阅读:
    shader变体
    正向渲染
    LWPR
    blend
    slua
    unity
    jsBridge
    浏览器
    数据运营系统
    广告
  • 原文地址:https://www.cnblogs.com/hackerteen/p/12382766.html
Copyright © 2011-2022 走看看