博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2010年8月3日

摘要: Integer InquiryTime Limit: 1 Second Memory Limit: 32768 KB One of the first users of BIT's new supercomputer was Chip Diller. He extended his exploration of powers of 3 to go from 0 to 333 and he exp... 阅读全文

posted @ 2010-08-03 21:00 还好 阅读(1032) 评论(0) 推荐(2) 编辑

2010年7月30日

摘要: 下面是我所开发的一个UI里面的C#代码,主要就是几个按钮点击事件,按照我们公司的要求在事件里面必须加try-catch-finally做异常处理,不过我感觉每个事件里面都要加相同的try-catch-finally代码,感觉没有达到代码重用,但又不是很清楚改如何重用这部分代码,故特此咨询博客园的大牛们,望大牛不吝赐教!不胜感激!代码 Code highlighting produced by Ac... 阅读全文

posted @ 2010-07-30 07:15 还好 阅读(3674) 评论(35) 推荐(1) 编辑

2010年7月25日

摘要: Smith NumbersTime Limit: 1 Second Memory Limit: 32768 KB While skimming his phone directory in 1982, Albert Wilansky, a mathematician of Lehigh University, noticed that the telephone number of his br... 阅读全文

posted @ 2010-07-25 07:55 还好 阅读(543) 评论(0) 推荐(1) 编辑

摘要: 素数定义:质数又称素数。指在一个大于1的自然数中,除了1和此整数自身外,没法被其他自然数整除的数。换句话说,只有两个正因数(1和自己)的自然数即为素数。比1大但不是素数的数称为合数。1和0既非素数也非合数。素数在数论中有着很重要的地位。素数是算法中经常提到的一种数的类型,求一个正整数的所有素数因子也是很多算法中经常用到的,今天在做一道算法题时也遇到了素数的求解,故在此记录一下,以备后用!代码Cod... 阅读全文

posted @ 2010-07-25 07:29 还好 阅读(1540) 评论(0) 推荐(1) 编辑

2010年7月18日

摘要: GamblersTime Limit: 1 Second Memory Limit: 32768 KB A group of n gamblers decide to play a game: At the beginning of the game each of them will cover up his wager on the table and the assitant must m... 阅读全文

posted @ 2010-07-18 12:36 还好 阅读(884) 评论(0) 推荐(0) 编辑

2010年6月16日

摘要: 比如说现在有一张表Student,那么你可以按照下面方法创建一张临时表,假如临时表表名叫StudentTemp,语句如下:SELECT *INTO StudentTempFROM Student这样就创建了一张临时表StudentTemp。访问临时表与访问正常表一样!如SELECT * FROMStudentTemp记得在用完之后要删除临时表! 删除临时表语句如下:DROP TABLEStuden... 阅读全文

posted @ 2010-06-16 12:18 还好 阅读(3530) 评论(4) 推荐(0) 编辑

2010年5月29日

摘要: 先说一下,如果你想提高自己的编程能力的话,建议你到浙大的ACM网站或者是北大的ACM网站,这两个网站也是国内最老牌的了,感兴趣不妨去试试,里面有很多编程题,各式各样的都有!网址我就不贴了,不知道的google一下。题目描述: Given a positive integer x, let S(x) denotes the sum of all x's digits. Two integers x ... 阅读全文

posted @ 2010-05-29 17:55 还好 阅读(420) 评论(0) 推荐(1) 编辑