摘要:
有一个整数数组,请声明一个字符串数组,将整数数组中的每一个元素的值转换为字符串保存到字符串数组中。 int[] a = { 1, 2, 3, 4, 5, 6 }; string[] b = new string[a.Length]; for (int i = 0; i < a.Length; i++ 阅读全文
摘要:
string[] array = { "浮云", "神马", "穿梭" }; for (int i = 0; i < array.Length; i++) { if (i < array.Length - 1) { Console.Write(array[i] + "|"); } else { Co 阅读全文
摘要:
int[] a = { 12, 2, 99, 6, 1 ,0}; int Max = 0; int Min = 0; for (int i = 0; i < a.Length; i++) { if (a[i] > Max) { Max = a[i]; } if (a[i] < Max) { Min 阅读全文
摘要:
冒泡排序 int[] a = { 1, 22, 6, 88, 9 }; for (int i = 0; i < a.Length; i++) { for (int s = i+1; s < a.Length; s++) { if(a[i]>a[s]) { int b = 0; b = a[i]; a 阅读全文
摘要:
分支循环逻辑 begin与end是开始与结束的意思,在这里相当于()。 declare @Id int =1; if(@Id >1) begin print 'OK' end else if(@Id >0) begin set @Id+=10; print '0'+@Id end 视图 优点: 1. 阅读全文
摘要:
我的第一篇博客,谢谢 阅读全文