摘要:
namespace 刘老师推箱子{ class Program { static int kkk1, kkk2; static void Main(string[] args) { int x = 1, y = 1, i = 0; int[, ,] dt = new int[2, 10, 10] ... 阅读全文
摘要:
namespace index{ class Program { static void Main(string[] args) { while (true) { string s = "abcdefghijklmn"; int i = s.IndexOf("f"); // i是f在字符串s中的位置... 阅读全文
摘要:
namespace 随机生成验证码{ class Program { static void Main(string[] args) { while (true) { string s = "abcdefghijklmnopqrstuvwxyz"; string t = "李青用强力的回旋踢击退地方... 阅读全文
摘要:
static void Main(string[] args) { while (true) { Console.WriteLine("请输入一段英文:"); string s = Console.ReadLine(); int x = s.Length; //x代表字符的长度 for (int ... 阅读全文