课堂测试

public class test01 {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);

        int length = scanner.nextInt();

        int tempInt[] = new int[length];

        int max = 0;
        int tempMax = 0;

        for (int i = 0; i < length; i++) {
    今天的课堂测试让我体会到逻辑思维和数据结构算法在写代码中的重要性。       

 tempInt[i] = scanner.nextInt();

            if (i == 0) {
                tempMax = tempInt[i];
                max = tempInt[i];
            } else {
                if (tempMax < 0) {
                    tempMax = tempInt[i];
                } else {
                    tempMax += tempInt[i];
                }
            }

            if (tempMax > max) {
                max = tempMax;
            }
        }

        System.out.println(max);

    }
}

posted @ 2022-03-14 19:57  信2005-2高维  阅读(22)  评论(0编辑  收藏  举报