Kann mir jemand einen Rat geben, was ich noch machen kann?
Ich komme nicht mehr weiter.
package de.codegym.task.task04.task0428;
/*
Positive Zahl
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String aZahl = reader.readLine();
String bZahl = reader.readLine();
String cZahl = reader.readLine();
int zahl1 = Integer.parseInt(aZahl);
int zahl2 = Integer.parseInt(bZahl);
int zahl3 = Integer.parseInt(cZahl);
int anZahl = 0;
if (zahl1 < 0 && zahl2 < 0 && zahl3 < 0) {
System.out.print(anZahl);
}else if(zahl1 > 0) {
anZahl++;
System.out.print(anZahl);
}if (zahl2 > 0) {
anZahl++;
System.out.print(anZahl);
}if (zahl3 > 0) {
anZahl++;
System.out.print(anZahl);
}
}
}