import java.util.*; /** * QQ2 微信红包 * @author d3y1 */ public class Gift { /** * 程序入口 * @param gifts * @param n * @return */ public int getValue(int[] gifts, int n) { int result; result = getValue1(gifts, n); // result = getValue2(gifts, n); // result = getValue3(gifts, n); // result = getValue4(gifts...