摘要: 一、1.break与continue.这两个关键字一般放在循环的花括号里面使用。break——结束整个循环。continue——结束本次循环,进入下次循环。break的案例: int i = 1; for(;;) { if(i>100) { break; } Console.Write(i+"\t"... 阅读全文
posted @ 2014-12-27 12:05 五月阳光 阅读(410) 评论(0) 推荐(0) 编辑