码迷,mamicode.com
首页 > 编程语言 > 详细

c++程序—goto

时间:2020-02-29 14:42:00      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:lag   程序   span   语句   pre   using   got   int   name   

#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;

}

 

c++程序—goto

标签:lag   程序   span   语句   pre   using   got   int   name   

原文地址:https://www.cnblogs.com/hackerteen/p/12382766.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!