Hallo,
Fehlermeldung: Achte darauf, dass die max-Methode bei negativen Zahlen korrekt funktioniert.
Meine Lösung ist richtig, aber wie soll ich die negativen Zahlen berücksichtigen? Irgendwelche Ideen?
Vielen Dank!
package de.codegym.task.task07.task0701;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
/*
Der höchste Wert in einem Array
*/
public class Solution {
public static void main(String[] args) throws Exception {
int[] array = arrayInitialisieren();
int max = max(array);
System.out.println(max);
}
public static int[] arrayInitialisieren() throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int [] zahlen = new int [20];
for (int i = 0; i<zahlen.length; i++){
int a = Integer.parseInt(reader.readLine());
zahlen [i]=a;
}// Array erstellen und füllen
return zahlen;
}
public static int max(int[] array) {
int max = 0;
for (int i = 0; i<array.length; i++){
if (array [i]>max)
max = array[i];
}// Größten Wert finden
return max;
}
}