Created
March 23, 2012 18:47
-
-
Save sanrodari/2173710 to your computer and use it in GitHub Desktop.
Ejercicio Diego
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
public class Operacion3 { | |
public static void main(String[] args) | |
{ | |
int calc = Integer.parseInt(JOptionPane.showInputDialog("ingrese numero")); | |
if (calc < 0 ) | |
{ | |
JOptionPane.showMessageDialog(null, "el numero es; negativo"); | |
} | |
else if (calc > 0 ) | |
{ | |
JOptionPane.showMessageDialog(null, "el numero es positivo"); | |
} | |
else if (calc == 0 ) | |
{ | |
JOptionPane.showMessageDialog(null, "el numero es 0"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment