上一页 1 ··· 365 366 367 368 369 370 371 372 373 ··· 399 下一页
摘要: http://freejvm.iteye.com/blog/976878需要找时间验证一下,另外还需要学习多个参数的尾递归如何来实现的技巧斐波那契数列第n个数的求值, public static long fibo4(int n) { if (n //... 阅读全文
posted @ 2015-07-10 09:24 ChuckLu 阅读(938) 评论(0) 推荐(0)
摘要: C#中的异常处理 while (ex != null) { WriteExceptionLog(ex, fileName); ex = ex.InnerException; } /// <summary> /// 将异常处理成字符串的形式,然后写入文件 /// </summary> /// <par 阅读全文
posted @ 2015-07-09 18:34 ChuckLu 阅读(457) 评论(0) 推荐(0)
摘要: How to: Create a Windows Communication Foundation Client To create a Windows Communication Foundation client Create a new console application project 阅读全文
posted @ 2015-07-09 15:46 ChuckLu 阅读(184) 评论(0) 推荐(0)
摘要: Sum of Digits / Digital RootIn this kata, you must create adigital rootfunction.A digital root is therecursive sum of all the digits in a number.Given... 阅读全文
posted @ 2015-07-09 15:30 ChuckLu 阅读(771) 评论(0) 推荐(0)
摘要: Multiples of 3 and 5If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.F... 阅读全文
posted @ 2015-07-09 14:56 ChuckLu 阅读(573) 评论(0) 推荐(0)
摘要: A number system with moduli is defined by a vector of k moduli, [m1,m2, ···,mk].The moduli must be pairwise co-prime, which means that, for any pair of... 阅读全文
posted @ 2015-07-09 12:15 ChuckLu 阅读(324) 评论(0) 推荐(0)
摘要: Case swappingDescription:Given a string, swap the case for each of the letters.e.g. CodEwArs --> cODeWaRSExamplesKata.Swap("") == ""Kata.Swap("CodeWar... 阅读全文
posted @ 2015-07-09 09:17 ChuckLu 阅读(304) 评论(0) 推荐(0)
摘要: This is the third of six tasks required to create a Windows Communication Foundation (WCF) application. For an overview of all six of the tasks, see t 阅读全文
posted @ 2015-07-08 19:48 ChuckLu 阅读(287) 评论(0) 推荐(0)
摘要: This is the second of six tasks required to create a basic Windows Communication Foundation (WCF) service and a client that can call the service. For 阅读全文
posted @ 2015-07-08 18:46 ChuckLu 阅读(186) 评论(0) 推荐(0)
摘要: https://msdn.microsoft.com/en-us/library/ms731835.aspx This is the first of six tasks required to create a basic Windows Communication Foundation (WCF 阅读全文
posted @ 2015-07-08 17:40 ChuckLu 阅读(204) 评论(0) 推荐(0)
上一页 1 ··· 365 366 367 368 369 370 371 372 373 ··· 399 下一页