摘要:
[代码] [C#]代码using System;using System.Collections.Generic;using System.Text;using System.Net;using System.IO;using System.Text.RegularExpressions;using... 阅读全文
摘要:
C#实现写入Excel表using System;using System.Reflection;using System.IO;using Microsoft.Office.Interop.Excel; namespace Test{ class Program { p... 阅读全文
摘要:
#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**/... 阅读全文
摘要:
static System.Collections.Specialized.StringCollection MakeStrings(string[] characters, int finalStringLength){ int finalLength = finalStringLength... 阅读全文