摘要: [代码] [C#]代码using System;using System.Collections.Generic;using System.Text;using System.Net;using System.IO;using System.Text.RegularExpressions;using... 阅读全文
posted @ 2014-12-01 17:30 如.若 阅读(4338) 评论(0) 推荐(0) 编辑
摘要: C#实现写入Excel表using System;using System.Reflection;using System.IO;using Microsoft.Office.Interop.Excel; namespace Test{ class Program { p... 阅读全文
posted @ 2014-12-01 17:10 如.若 阅读(3076) 评论(0) 推荐(0) 编辑
摘要: #include #include void reverse(char *p) { char c, *p1, *p2; for (p1=p, p2=p+strlen(p)-1; p1<p2; c=*p1, *p1=*p2, *p2=c, p1++, p2--);} /**test**/... 阅读全文
posted @ 2014-12-01 17:07 如.若 阅读(213) 评论(0) 推荐(0) 编辑
摘要: static System.Collections.Specialized.StringCollection MakeStrings(string[] characters, int finalStringLength){ int finalLength = finalStringLength... 阅读全文
posted @ 2014-12-01 17:06 如.若 阅读(1260) 评论(0) 推荐(1) 编辑