goto语句
Posted SimonLiang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了goto语句相关的知识,希望对你有一定的参考价值。
goto语句的使用:
#include <iostream> using namespace std; int main() { int i = 1; number: i++; std::cout<<"*"; if(i<10) { goto number; } std::cout<<"\n 程序结束"<<endl; return 0; }
输出:
*********
程序结束
一般不用goto语句,调试困难!因为编译器难以报错!
以上是关于goto语句的主要内容,如果未能解决你的问题,请参考以下文章