Sumatoria con while,,,

Iniciado por rub'n, 27 Noviembre 2010, 16:43 PM

0 Miembros y 1 Visitante están viendo este tema.

rub'n

buenos Dias,,,   jaaa mi profesor hizo  este codigo  y esta mal echo no suma las notas como deberia  !!! alguna sugerencia  GRACIAS GENTE

Código (java) [Seleccionar]

package PruebaConString;

import java.io.*;
public class Sumatoria {
public void leerDatos() throws Exception {
int suma=0,num;
   BufferedReader leer = new  BufferedReader(new InputStreamReader(System.in));

String continua = "si";
while(continua == "si" ) {
System.out.println("introduce Numero: ");
num=Integer.parseInt(leer.readLine());
suma+=num;
System.out.println("Desea continuar ? 'si/no'");
continua=(leer.readLine());
}
System.out.println("La sumatoria es: "+suma);

}

public static void main(String[] args) throws Exception {
Sumatoria j = new Sumatoria();
j.leerDatos();
}
}

 


rubn0x52.com KNOWLEDGE  SHOULD BE FREE!!!
If you don't have time to read, you don't have the time (or the tools) to write, Simple as that. Stephen

тαптяα

Ese +suma que tienes aquí:

Código (java) [Seleccionar]
System.out.println("La sumatoria es: "+suma);

nose si será correcto.

prueba a poner el valor solo.,

rub'n

Cita de: ハセヲ, en 27 Noviembre 2010, 17:33 PM
Ese +suma que tienes aquí:

Código (java) [Seleccionar]
System.out.println("La sumatoria es: "+suma);

nose si será correcto.

prueba a poner el valor solo.,

ya lo hice pero sigue sin funcionar


rubn0x52.com KNOWLEDGE  SHOULD BE FREE!!!
If you don't have time to read, you don't have the time (or the tools) to write, Simple as that. Stephen

тαптяα

Yo ya te digo que no sé casi nada de JAVA.

Aún así me parece que todo esta correcto.

Puedes poner la salida cuando metes el 1 2 3 4 y el 5 por favor.

Gracias.

Leyer

Código (java) [Seleccionar]
while(continua.equalsIgnoreCase("si"))

rub'n



rubn0x52.com KNOWLEDGE  SHOULD BE FREE!!!
If you don't have time to read, you don't have the time (or the tools) to write, Simple as that. Stephen

Xedrox

Si lees por consola usa la clase "Scanner"

rub'n

Cita de: Xedrox en 28 Noviembre 2010, 03:14 AM
Si lees por consola usa la clase "Scanner"

esa clase io ,,pide todos los datos por consola bueno,,justo como lo estoy haciendo en el programa
saluDDoS


rubn0x52.com KNOWLEDGE  SHOULD BE FREE!!!
If you don't have time to read, you don't have the time (or the tools) to write, Simple as that. Stephen