课堂测试
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);
}
}