企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
#### switch 穿透 ~~~ public class Dome{ public static void main(String[] args) { int i = 7; switch(i){ case 1: case 2: case 3: case 4: case 5: System.out.print("工作日"); break; case 6: case 7: System.out.print("休息日"); break; } } } ~~~