学习笔记——C++跳转语句

发布时间:2024年01月07日

break语句

作用:用于跳出选择结构或循环结构

break使用的时机:

1,出现在switch条件语句中,作用是终止case并跳出switch

2,出现在循环语句中,作用是跳出当前的循环语句

3,出现在嵌套循环中,跳出最近的内层循环语句

验证代码:

#include<bits/stdc++.h>
using namespace std;
int main(){
	//1,在switch语句中使用break
	cout<<"请选择您的难度"<<endl;
	cout<<"1,easy"<<endl;
	cout<<"2,middle"<<endl;
	cout<<"3,difficult"<<endl;
	int num=0;
	cin>>num;
	switch(num){
		case 1:
			cout<<"your choice is easy"<<endl;
			break;
		case 2:
			cout<<"your choice is middle"<<endl;
			break;
		case 3:
			cout<<"your choice is difficult"<<endl;
			break;
	}
	//2,在循环语句中使用break
	for (int i=0;i<10;i++){
		if(i==5){
		 	break;//跳出循环 
	} 

	cout<<i<<endl;
	}
	//3,在嵌套循环语句中使用break,退出内层循环
	for (int i=0;i<10;i++){
		for(int j=0;j<10;j++){
			if(j==5){
				break;
			}
			cout<<"*"<<"  ";
		}
		cout<<endl;
	} 
	
}

文章来源:https://blog.csdn.net/qq_52788787/article/details/135442202
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。