C语言之 break与switch用法 #include <stdio.h>int main(void){ int x=1, y=0, a=0, b=0; switch (x) //第一个switch { case 1: switch (y) //第二个switch { case 0: a++; break; //终止的是第二个switch case... c语言 2023-08-07 70 点赞 1 评论 106 浏览