08 2014 档案

摘要:java开发者最常去的20个英文网站:1.[http://www.javaalmanac.com]  Java开发者年鉴一书的在线版本. 要想快速查到某种Java技巧的用法及示例代码, 这是一个不错的去处.2.[http://www.onjava.com]  OReilly的Java网站. 每... 阅读全文
posted @ 2014-08-23 17:41 bigjava 阅读(504) 评论(0) 推荐(1) 编辑
摘要:DescriptionHow far can you make a stack of cards overhang a table? If you have one card, you can create a maximum overhang of half a card length. (We'... 阅读全文
posted @ 2014-08-22 23:49 bigjava 阅读(385) 评论(0) 推荐(0) 编辑
摘要:DescriptionBusinesses like to have memorable telephone numbers. One way to make a telephone number memorable is to have it spell a memorable word or p... 阅读全文
posted @ 2014-08-21 23:37 bigjava 阅读(290) 评论(0) 推荐(0) 编辑
摘要:DescriptionProblems involving the computation of exact values of very large magnitude and precision are common. For example, the computation of the na... 阅读全文
posted @ 2014-08-20 22:39 bigjava 阅读(306) 评论(0) 推荐(0) 编辑
摘要:DescriptionCalculate a+bInputTwo integer a,b (0<=a,b<=10)OutputOutput a+bSample Input1 2Sample Output3import java.util.Scanner; public class Main { ... 阅读全文
posted @ 2014-08-19 23:41 bigjava 阅读(433) 评论(0) 推荐(0) 编辑
摘要:序列号符号名称结合性(与操作数)目数说明1.点从左到右双目( )圆括号从左到右[ ]方括号从左到右2+正号从右到左单目-负号从右到左单目++自增从右到左单目前缀增,后缀增- -自减从右到左前缀减,后缀减~按位非/取补运算从右到左单目!逻辑非从右到左单目“!”不可以与“=”联用3*乘从左到右双目/除从... 阅读全文
posted @ 2014-08-19 20:55 bigjava 阅读(243) 评论(0) 推荐(0) 编辑