12 2011 档案
摘要:................using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace MaxSUM{ class Program { static void Main(string[] args) { //初始化目标数组 int[] myArray = new int[] { 13, -41, 42, 26, -33, 59, 97, -90, -23, 84 }; ...
阅读全文