摘要: a,b均为整数:a%b=a-(a/b)*b;a,b中有浮点数:a%b=a-(b*q),这里q=int(a/b); 阅读全文
posted @ 2015-08-13 14:21 秦凯 阅读(1040) 评论(0) 推荐(0)
摘要: for (int n = 20, i = 0; i < n; i++, n--) { f: for (; n < 15;) { System.out.println("hehe"); break f; ... 阅读全文
posted @ 2015-08-13 11:11 秦凯 阅读(605) 评论(0) 推荐(0)