04 2023 档案
摘要:public static string CreateMd5(string text) { MD5 md5 = MD5.Create(); byte[] md5Byte= md5.ComputeHash(Encoding.ASCII.GetBytes(text)); StringBuilder sb
阅读全文
摘要:1.数组项目求和 点击查看代码 int sum = 0; int[] s = new int[6] { 2, 3, 4, 7, 9, 6 }; foreach (int i in s) { sum += i; } Console.WriteLine(sum); 2.数组项求最大值和最小值 点击查看代
阅读全文

浙公网安备 33010602011771号