摘要:
直接贴示例代码: static void Main(string[] args) { int cs; int s= outfanhui(90, out cs); Console.WriteLine("out返回的方法参数值为:{0};常规返回的值是:{1};", cs, s); Console.ReadLine(); int rs = 1990; int j=reffanhui (ref rs); ... 阅读全文
摘要:
反序一个数组,循环的次数为:要反序的数组的长度整除2后得到的商;例如:n/2static void Main(string[] args) { int[] array = { 23, 45, 16, 7, 42 }; for (int i = 0; i <= array.Length / 2; i++) { int temp = array[i]; array[i] = array[array.Length - 1 - i]; ... 阅读全文
摘要:
冒泡排序法的规律:n个元素排序,需要比较n-1趟(简称t),每趟比较的次数为:元素个数n减去趟t;例子: 1 static void Main(string[] args) 2 { 3 int[] shuzu = new int[] { 88, 4, 24, 99, 345, 12 }; 4 for (int i = 0; i < shuzu.Length - 1; i++) 5 { 6 for (int j = 0; j < shuzu.Length - 1 - i; j+... 阅读全文