Una pregunta bastante estúpida. Dado el código: public static int sum(String a, String b) /* throws? WHAT? */ { int x = Integer.parseInt(a); // throws NumberFormatException int y = Integer.parseInt(b); // throws NumberFormatException return x + y; } ¿Podrías decir si es bueno Java o no? De...