1.最大连续子序列之和 import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while (sc.hasNext()) { String str = sc.nextLine(); String[] s = str.split(" "); Set<Integer> set...