Bonjour,
Avez-vous une idée de pourquoi la dernière étape ne se valide pas alors qu'il n'y a pas d'else s'il vous plaît ?
Merci d'avance pour votre aide.
Hello,
Have you an idea about the last validation step ? Because there is no else so I don't understand.
Thanks in advance for your help.
package fr.codegym.task.task04.task0424;
/*
Trois nombres
*/
import java.io.*;
import java.util.Scanner;
public class Solution {
public static void main(String[] args) throws Exception {
//écris ton code ici
Scanner input = new Scanner(System.in);
int a = input.nextInt();
int b = input.nextInt();
int c = input.nextInt();
if ((a != b) && (a != c))
System.out.println("1");
else if ((b != a) && (b != c))
System.out.println("2");
else if ((c != a) && (c != b))
System.out.println("3");
}
}