Ejercicio
Suma de números
Objetivo
Escriba un programa en Visual Basic 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
' Import the System namespace to use Console class
Imports System
Public Class Program
' Main subroutine, entry point of the program
Public Shared Sub Main()
' Initialize the total sum as 0
Dim total As Integer = 0
Dim number As Integer
' Start a loop to repeatedly ask the user for numbers
Do
' Prompt the user for a number
Console.Write("Number? ")
number = Integer.Parse(Console.ReadLine())
' Add the entered number to the total sum
total += number
' Display the updated total
Console.WriteLine("Total = " & total)
Loop While number <> 0 ' Continue until the user enters 0
' Display the message indicating the end of the process
Console.WriteLine("Finished")
End Sub
End Class