Couldn't pass this condition: "The program should display the ordinal number of the number that is different from the others" For me it looks good, part of my code:
if (numb1 == numb2 && numb1 != numb3)
    System.out.println("3");
else if (numb1 == numb3 && numb1 != numb2)
    System.out.println("2");
else if (numb2 == numb3 && numb3 != numb2)
    System.out.println("1");