Calculating the Average of Four Numbers in C#

In this exercise, you will create a C# program that prompts the user to enter four numbers and then calculates their average. This exercise is designed to strengthen your understanding of user input handling, arithmetic operations, and formatted output in C#. By completing this task, you will improve your ability to perform numerical calculations and display structured results on the console.



Group

Getting Started with C# Programming

Objective

The objective of this exercise is to develop a C# program that prompts the user to enter four numbers, calculates their average, and displays the result in a clear and formatted way.

Write a C# program to calculate and display the average of four numbers entered by the user.

Example C# Exercise

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

using System;

namespace AverageCalculator
{
    class Program
    {
        // The Main method is where the program execution begins
        static void Main(string[] args)
        {
            // Declare variables to store the four numbers
            double num1, num2, num3, num4, average;

            // Prompt the user to enter the first number
            Console.Write("Enter the first number: ");
            num1 = Convert.ToDouble(Console.ReadLine()); // Read and convert the input to a double

            // Prompt the user to enter the second number
            Console.Write("Enter the second number: ");
            num2 = Convert.ToDouble(Console.ReadLine());

            // Prompt the user to enter the third number
            Console.Write("Enter the third number: ");
            num3 = Convert.ToDouble(Console.ReadLine());

            // Prompt the user to enter the fourth number
            Console.Write("Enter the fourth number: ");
            num4 = Convert.ToDouble(Console.ReadLine());

            // Calculate the average
            average = (num1 + num2 + num3 + num4) / 4;

            // Display the result
            Console.WriteLine("\nThe average of {0}, {1}, {2}, and {3} is: {4}", num1, num2, num3, num4, average);

            // Wait for the user to press a key before closing the console window
            Console.ReadKey(); // This keeps the console window open until a key is pressed
        }
    }
}

 Output

Enter the first number: 10  
Enter the second number: 20  
Enter the third number: 30  
Enter the fourth number: 40  

The average of 10, 20, 30, and 40 is: 25  

Share this C# Exercise

More C# Practice Exercises of Getting Started with C# Programming

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#.

  • Arithmetic Operations with Three Numbers in C#

    In this exercise, you will create a C# program that asks the user to enter three numbers (a, b, and c) and calculates two expressions based on these inputs: (a+b)⋅c a⋅c+b⋅c ...

  • Age-Based Response in C#

    In this exercise, you will create a C# program that asks the user to enter their age and then responds with a friendly message, such as: "You look younger than [age entered]" Thi...

  • Displaying a Number in Different Formats in C#

    In this exercise, you will create a C# program that prompts the user for a number and displays it in two different formats: 1. The number should be printed four times in a row, ...

  • Displaying a Number as a 3x5 Rectangle in C#

    In this exercise, you will create a C# program that prompts the user for a single-digit number and then uses that digit to draw a 3-column by 5-row rectangle. The rectangle follows...

  • Celsius to Kelvin and Fahrenheit Converter in C#

    In this exercise, we will create a C# program that converts a temperature value from Celsius to both Kelvin and Fahrenheit. The program will prompt the user to input a temperature ...

  • Introduction to C# Programming

    In this exercise, you will get introduced to the C# programming language and its basic syntax. You'll learn how to write your first C# program, understand how the structure of a C#...