Не проходят
3 и последнее условия
BufferedReader r = new BufferedReader(new InputStreamReader(System.in));
int a = Integer.parseInt(r.readLine());
int b = Integer.parseInt(r.readLine());
int c = Integer.parseInt(r.readLine());

int h=0;
int j=0;
{
if (a>=1) h++;
if (b>=1) h++;
if (c>=1) h++;

if (a<=-1) j++;
if (b<=-1) j++;
if (c<=-1) j++;
}
 if (h>=1){
System.out.println("количество положительных чисел: " +h);
  System.out.println("количество отрицательных чисел: "+j);
}
   else
System.out.println("количество положительных чисел: "+"0");