摘要:
把做工程过程中比较好的代码做个收藏,下边代码是关于C#通过IHttpModule接口修改http输出的代码,应该能对各位有一些用处。 using System; using System.Collections.Generic; using System.Linq; using System.Web 阅读全文
摘要:
下边代码段是关于一个Python编写的简单hangman游戏的代码。 #!/usr/bin/env python import random import cPickle class Hangman(object): '''A simple hangman game that tries to im 阅读全文
摘要:
如下代码内容是关于Java检测字符串是否是回文字符串的代码。 public static boolean isPalindrome(String s){ int low = 0; int high = s.length()-1; while(low < high){ if(s.charAt(low) 阅读全文