CPP学习之——循环语句的老祖宗——goto语句(7.1)

一 概述

goto语句也称为无条件转移语句,其一般格式如下: goto 语句标号; 其中语句标号是按标识符规定书写的符号, 放在某一语句行的前面,标号后加冒号(:)。语句标号起标识语句的作用,与goto 语句配合使用。

二 代码及显示

2.1 代码

1
2
3
4
5
6
7
8
9
10
11
#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 结果

1
2
3
*********
程序结束
*********

三 参考

  • goto语句