REALIZAR UN PROGRAMA QUE GUARDA EN UN ARRAY 10 NÚMEROS ENTEROS QUE SE LEEN POR TECLADO. A CONTINUACIÓN, SE RECORRE EL ARRAY Y CALCULA CUÁNTOS NÚMEROS SON POSITIVOS, CUÁNTOS NEGATIVOS Y CUÁNTOS CEROS
Respuestas a la pregunta
Contestado por
4
import javax.swing.JOptionPane;
public class arreglo {
int array[];
public arreglo() {
try {
array = new int[10];
for(int i=0; i<array.length; i=i+1){
int x = Integer.parseInt(JOptionPane.showInputDialog("Escriba el "+(i+1)+" numero"));
if(x<0) {
System.out.println("el numero "+x+" es negativo");
} else
if(x==0) {
System.out.println("el numero "+x+" es cero");
} else
if(x>0) {
System.out.println("el numero "+x+" es positivo");
}
}
}catch(Exception ex) {
System.out.println("error "+ex);
System.exit(0);
}
}
public static void main(String args[]) {
arreglo a = new arreglo();
}
}
Otras preguntas
Matemáticas,
hace 6 meses
Geografía,
hace 6 meses
Geografía,
hace 6 meses
Latín / Griego,
hace 1 año
Matemáticas,
hace 1 año
Química,
hace 1 año