C++ goto语句
C++ goto语句也称为跳转语句。 它用于将控制转移到程序的其他部分。 它无条件跳转到指定的标签。
它可用于从深层嵌套循环或switch case标签传输控制。
C++ Goto语句示例
下面来看看看C++中goto语句的简单例子。
#include <iostream> using namespace std; int main() { ineligible: cout<<"You are not eligible to vote!\n"; cout<<"Enter your age:\n"; int age; cin>>age; if (age < 18){ goto ineligible; } else { cout<<"You are eligible to vote!"; } return 0; }
上面代码执行结果如下 -
You are not eligible to vote! Enter your age: 16 You are not eligible to vote! Enter your age: 7 You are not eligible to vote! Enter your age: 22 You are eligible to vote!
本站文章除注明转载外,均为本站原创或编译
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动共创优秀实例教程
转载请注明:文章转载自:代码驿站 [http:/www.codeinn.net]
本文标题:C++ goto语句
本文地址:http://www.codeinn.net/cplus/1738.html
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动共创优秀实例教程
转载请注明:文章转载自:代码驿站 [http:/www.codeinn.net]
本文标题:C++ goto语句
本文地址:http://www.codeinn.net/cplus/1738.html