C# Program to Sum Two Numbers from Command Line Arguments

In this C# program, we will create a simple console application called "sum" that takes two integer numbers as command line arguments. The program will then calculate the sum of the two numbers and display the result. This demonstrates how to handle command line arguments in C# and perform basic arithmetic operations. The user will enter two numbers when running the program, and the sum will be printed to the console.



Group

Functions in C#

Objective

1. Define the "sum" program in the Main method, which accepts command line arguments.
2. Parse the arguments into integers.
3. Calculate the sum of the two numbers.
4. Display the sum to the console.

Write a C# program named "sum", which receives two integer numbers in the command line and displays their sum, as in this

example:
sum 5 3
Output: 8

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    // Main method that starts the program execution
    public static void Main(string[] args)
    {
        // Check if the user has provided two command line arguments
        if (args.Length == 2)
        {
            // Parse the command line arguments as integers
            int num1 = int.Parse(args[0]);
            int num2 = int.Parse(args[1]);

            // Calculate the sum of the two numbers
            int sum = num1 + num2;

            // Display the sum to the console
            Console.WriteLine(sum);
        }
        else
        {
            // If not exactly two arguments are provided, show an error message
            Console.WriteLine("Please provide exactly two numbers.");
        }
    }
}

 Output

8

Share this C# Exercise

More C# Practice Exercises of Functions in C#

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