Das Programm funktioniert, die Zweitletzte Bedingung wird allerdings nicht erfüllt? warum denn das?
package de.codegym.task.task05.task0532;
import java.io.*;
/*
Aufgabe zu Algorithmen
*/
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int max = 0;
int amount = 0;
int a = Integer.parseInt(reader.readLine());
if(a > 0){
while(amount < a){
int input = Integer.parseInt(reader.readLine());
amount++;
if(input > max)
max = input;
if(amount == a && amount > 0){
System.out.println(max);
break;
}
}
}
}
}