I'm trying to print out only certain integers which are larger than 76 but I can't seem to figure it out. The output just prints all the integers stored in the array
class over76 {
public static void main(String[] args) {
int a[] = new int[]{12, 77, 92, 55, 24, 65, 41, 13, 76 , 90};
for (int i = 0; i < a.length; i++){
if(a[i]>76);
System.out.println(a[i]);
}
}
}