Ejercicio
Suma de números
Objetivo
Escriba un programa en java para pedir al usuario una cantidad indeterminada de números (hasta que se ingrese 0) y muestre su suma, de la siguiente manera:
¿Número? 5
Total = 5
¿Número? 10
Total = 15
¿Número? -2
Total = 13
¿Número? 0
Terminado
Código de Ejemplo
import java.util.Scanner;
public class Program {
// Main entry point of the program
public static void main(String[] args) {
// Create a scanner to read user input
Scanner scanner = new Scanner(System.in);
int total = 0;
int number;
// Start a loop to repeatedly ask the user for numbers
do {
// Prompt the user for a number
System.out.print("Number? ");
number = scanner.nextInt();
// Add the entered number to the total sum
total += number;
// Display the updated total
System.out.println("Total = " + total);
} while (number != 0); // Continue until the user enters 0
// Display the message indicating the end of the process
System.out.println("Finished");
}
}