CPP学习之——循环语句的老祖宗——goto语句(7.1) 发表于 2019-11-08 分类于 开发 , A-基础语言 , C++ 阅读时长 ≈ 1 分钟 一 概述goto语句也称为无条件转移语句,其一般格式如下: goto 语句标号; 其中语句标号是按标识符规定书写的符号, 放在某一语句行的前面,标号后加冒号(:)。语句标号起标识语句的作用,与goto 语句配合使用。 二 代码及显示2.1 代码1234567891011#include<iostream>using namespace std;int main() { int i = 1; number: i++; cout << "*"; if (i < 10) {goto number;} cout << endl << "程序结束" << endl; cout << "*********"; return 0;} 2.2 结果123*********程序结束********* 三 参考 goto语句