c++基础(4)

来源:互联网 发布:淘宝上的图片怎么保存 编辑:程序博客网 时间:2024/06/06 18:43
#include <iostream>using namespace  std;int main(){    /* code */    int n = 10;mylable:    cout << n << ", ";    n--;    if (n >0)    {        goto mylable;    }    cout << "lift off! \n";    return 0;}