Created
June 18, 2013 02:01
-
-
Save Fhernd/5802099 to your computer and use it in GitHub Desktop.
Errores lógicos difícilmente detectables por el analizador semántico de C#.
This file contains hidden or 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
class ConversionUnidades | |
{ | |
public static void main() | |
{ | |
int milimetros = 5; | |
int centimetros = 10; | |
// suma de unidades | |
int suma = milimetros + centimetros; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment