阿鑫来了  

2021年3月17日

摘要: 来讲讲switch语句: switch是用来进行多分支选择的语句,一般结构是: switch(变量表达式) { case xx1: // ... break; case xx2 // ... break; default: // ... } #include<stdio.h> #include<st 阅读全文
posted @ 2021-03-17 20:59 阿鑫来了 阅读(380) 评论(0) 推荐(0)