goto语句
可以无条件的跳转到任意地方
语法:goto 标记名称;
(创建标记:标记名称:
标记后面要有冒号)
如果标记存在,则会跳转到这个标记的地方继续运行。
#include <iostream>
using namespace std;
int main()
{
//goto
cout << "1" << endl;
goto FLAG;
cout << "2" << endl;
cout << "3" << endl;
cout << "4" << endl;
FLAG: //记得这里是冒号
cout << "5" << endl;
system("pause");
return 0;
}
运行结果是:(环境:Windows11(arm/Apple M VM)/Visual Studio 2022/Debug/arm64)
1
5
请按任意键继续. . .
:-)