Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/07/2013, 06:55
michael10
 
Fecha de Ingreso: noviembre-2011
Ubicación: Xalapa
Mensajes: 7
Antigüedad: 13 años, 2 meses
Puntos: 0
Respuesta: Programa Java principiante

Si muchas gracias, quería saber si la sintaxis es correcta, de hecho solo necesitaba un for, me di cuenta, vi que algunas sumas si salían correctamente y me dejé llevar, lo corregí y esto fue lo que obtuve. Ahora si funciona.


import javax.swing.JOptionPane;
public class SumarNumeros{
public static void main(String [] args){

int n;
int num;
int suma=0;

n = Integer.parseInt(JOptionPane.showInputDialog("Cuan tos numeros vas a sumar? "));

for(int i=0; i<n; i++){
num = Integer.parseInt(JOptionPane.showInputDialog("Dame el numero " + (i+1) + " :"));
suma = suma + num;
}
JOptionPane.showMessageDialog(null, " La suma es: " +suma);
System.exit(0);
}
}