Skip to content

Commit 7ff43bc

Browse files
committed
#1 - Java
1 parent 0cafd29 commit 7ff43bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Roadmap/01 - OPERADORES Y ESTRUCTURAS DE CONTROL/java/JulianJRA.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public static void dividir(int a, int b) throws ArithmeticException {
155155
if (b == 0) {
156156
throw new ArithmeticException("División por cero no permitida.");
157157
}
158-
System.out.println("Resultado: " + (a / b));
158+
System.out.println("Resultado: " + (a / b));
159159
}
160160

161161
}

0 commit comments

Comments
 (0)