给定一个三角形,找出自顶向下的最小路径和。每一步只能移动到下一行中相邻的结点上。 [ [2], [3,4], [6,5,7], [4,1,8,3] ] public int fun(int[][] triangle){ if (triangle.len...