Sum of User Input Numbers Until Zero is Entered in C#

This exercise teaches you how to use a loop to ask the user for an undetermined number of inputs and calculate their sum. The program will continue to ask the user for numbers until the user enters 0, which will stop the loop and display the final sum. This is a good exercise for practicing loops, conditionals, and user input handling in C#.

The program uses a while loop to keep prompting the user for numbers. The sum is updated as the user provides new inputs, and the loop terminates when the user enters zero. By breaking out of the loop at the right moment and displaying the result, this exercise helps in handling user-driven processes in C#.



Group

C# Flow Control Basics

Objective

The objective of this exercise is to write a C# program to ask the user for an undetermined amount of numbers (until 0 is entered) and display their sum.

Write a C# program to ask the user for an undetermined amount of numbers (until 0 is entered) and display their sum, as follows:

Number? 5
Total = 5
Number? 10
Total = 15
Number? -2
Total = 13
Number? 0
Finished"

Example C# Exercise

 Copy C# Code
// First and Last Name: John Doe

using System;

namespace SumUserInput
{
    class Program
    {
        // Main method to execute the program
        static void Main(string[] args)
        {
            // Initialize a variable to store the total sum
            int total = 0;
            int number;

            // Start an infinite loop that will break when 0 is entered
            while (true)
            {
                // Ask the user to enter a number
                Console.Write("Number? ");
                number = int.Parse(Console.ReadLine());  // Read and parse the user's input

                // If the entered number is 0, break the loop and finish
                if (number == 0)
                {
                    break;
                }

                // Add the entered number to the total sum
                total += number;

                // Display the running total
                Console.WriteLine("Total = " + total);
            }

            // Once the loop is finished (0 entered), display "Finished"
            Console.WriteLine("Finished");
        }
    }
}

 Output

Number? 5
Total = 5
Number? 10
Total = 15
Number? -2
Total = 13
Number? 0
Finished

Share this C# Exercise

More C# Practice Exercises of C# Flow Control Basics

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Check if Both Numbers Are Negative in C#

    This exercise helps you practice the use of conditionals in C# to determine whether two input numbers are negative or not. The program asks the user to input two numbers and checks...

  • Check if One or Both Numbers are Negative in C#

    In this exercise, you will create a C# program that prompts the user to enter two numbers and checks the conditions for negativity. The program will determine whether both numbers ...

  • Display Multiples of Both 3 and 5 in C#

    In this exercise, you'll create a C# program that displays all numbers between 1 and 500 that are divisible by both 3 and 5. This task helps practice the use of loops and the modul...

  • Repeat a Number Based on User Input in C#

    In this exercise, you will write a C# program that asks the user for two inputs: a number and a quantity. The program will then repeat the number as many times as specified by the ...

  • Login Verification Program in C#

    In this task, you'll create a simple login verification program using C#. The program will continuously ask the user to enter their login and password until the correct values are ...

  • Login Attempt Program with Limit in C#

    In this task, you will create a login verification program in C# that asks the user for their login and password. The program will repeat the prompt until the correct login and pas...