C语言中break和continue的作用
一、break在switch语句中的作用:switch语句:switch(整型表达式){case 整型常量表达式:语句;break;case 整型常量表达式:语句;break;case 整型常量表达式:语句;break;}#include<stdio.h>int main(){ int n = 1; int m = 2; switch(n) { case 1: m++;