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;
}
}