摘要: 1. 当满足条件的case中没有break,程序将依次执行其后的每种条件(包括default)直到遇到break跳出int main(){ int n = 1; switch(n) { case 1: printf("--1--\n"); default... 阅读全文
posted @ 2015-07-03 15:11 5分 阅读(268) 评论(0) 推荐(0)