Die vorletzte Bedingung ist nicht erfüllt - warum?
The second last requirement is not met - why?
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 count= Integer.parseInt(reader.readLine());
int maximum = 0;
if(count>0){
while(count>0) {
int n = Integer.parseInt(reader.readLine());
if (n > maximum) maximum = n;
count--;
}
System.out.println(maximum);
}
}
}