C++ goto语句

C++ goto语句

我们今天讲一下让人又爱又恨的语句–goto语句了。

作用

能从一个点跳到另一个点

写法

事先定义好一个跳转点,它可以写成 一个跳转点的名字+: 的形式,然后后面继续写代码。
接下来就是跳转了,跳转可以写成goto 跳转点,也就是这样:

LOOP:code...
...
...
goto LOOP;

代码示例

#include
using namespace std;
int main(){
	int n; //定义变量
	Input:cout<<"Input a integer between 1 and 10."<<endl;
	cin>>n;
	if(n<1 or n>10){//超出范围
		cout<<"Your number is out of range."<<endl;
		goto Input;
	}else{//正常
		cout<<"Thanks your input.";
	}
	return 0;
}

拓展

goto语句一般来说可以被while语句所替代,比如上面的代码可以变成这样:

#include
using namespace std;
int main(){
	int n; //定义变量
	cout<<"Input a integer between 1 and 10."<<endl;
	cin>>n;
	while(n<1 or n>10){//超出范围
		cout<<"Your number is out of range."<<endl;
		cin>>n;
	}
	//正常
	cout<<"Thanks your input.";
	return 0;
}

小结

今天我们知道了goto语句的用法,还知道了goto语句可以被while语句所替代。

你可能感兴趣的:(C++,C++,goto)