Hi,
My solution seems to work (for me) but the validation doesn't go trough. Am I missing something?
BTW I suppose my solution is kind of complicated so any advice on the subject is welcome :)
package fr.codegym.task.task04.task0429;
/*
Nombres positifs et négatifs
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader lecteur = new BufferedReader(new InputStreamReader(System.in));
String w = lecteur.readLine();
String x = lecteur.readLine();
String y = lecteur.readLine();
int a = Integer.parseInt(w);
int b = Integer.parseInt(x);
int c = Integer.parseInt(y);
int nomb = 0;
int nombneg = 0;
if (a > 0)
nomb++;
if (a < 0)
nombneg++;
if (b > 0)
nomb++;
if (b < 0)
nombneg++;
if (c > 0)
nomb++;
if (c < 0)
nombneg++;
if (nomb > 0)
System.out.println("Nombre de nombres positifs : " + nomb);
else
System.out.println("Nombre de nombres positifs : 0");
if (nombneg > 0)
System.out.println("Nombre de nombres négatifs : " + nombneg);
else
System.out.println("Nombre de nombres négatifs : 0");
}
}