kzahhhh5803 kzahhhh5803 03-01-2024 Computers and Technology contestada Does the return statement in the following method cause compile errors? public static void main(String[] args) { int max = 0; if (max != 0) System.out.println(max); else return; } A. YesB. No