Created
June 20, 2014 18:44
-
-
Save Fhernd/7c18d0c7e0ff67aefb1d to your computer and use it in GitHub Desktop.
Control de excepcionese en bloque try...catch.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Articulos.Cap04 | |
{ | |
public sealed class ControlDEExcepciones | |
{ | |
public static int Dividir (int a, int b) | |
{ | |
if ( b == 0) | |
{ | |
throw new DivideByZeroException(); | |
} | |
return a / b; | |
} | |
public static void Main() | |
{ | |
int num1 = 7; | |
int num2 = 0; | |
int resultado; | |
try | |
{ | |
resultado = Dividir(num1, num2); | |
Console.WriteLine ("\nLa división de {0} entre {1} es igual a {2}\n", num1, num2, resultado); | |
} | |
catch (DivideByZeroException e) | |
{ | |
Console.WriteLine ("\nIntento de división entre 0\n"); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment