7
public class NuloOuNao {
public static boolean isZero(float num) {
if(num == null) {
return true;
}else {
return false;
}
}
public static void main(String[] args) {
isZero(10);
}
}
Row 5: The Operator == is Undefined for the argument type(s) float, null