当前位置:   article > 正文

[Error] break statement not within loop or switch

break statement not within loop or switch

[Error] break statement not within loop or switch

错误,中断语句不在循环内或switch语句中
举个栗子,在if语句嵌套中用break

	int i = 1,k = 1;
	if (i==1)
	{
		if (k==1)break;
		cout<<"i==1";
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

对于初学者来说可能会出现这样的错误

[Error] break statement not within loop or switch
  • 1

正确使用方法应该是这样的

int i = 1,k = 1;
	while (i==1)
	{
		if (k==2)
		break;
		cout<<i<<endl<<k;
		i++,k++;
	}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

在这里插入图片描述
break应该在循环中使用,满足条件时,直接跳出循环,不再执行while循环。
break掌握了,那么对于continue呢?两个会不会弄混淆呢
请看另一篇文章
https://blog.csdn.net/qq_44985985/article/details/91351915

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/909196
推荐阅读
相关标签
  

闽ICP备14008679号