C# Program with a Function to Sum Two Numbers

This C# program defines a function called Sum that accepts two integer parameters, adds them together, and returns the result. The Main method initializes two integer variables (x and y), calls the Sum function with those variables as arguments, and displays the result using Console.WriteLine. This example demonstrates how to pass parameters to a function and how to return a value from that function in C#.



Group

Functions in C#

Objective

1. Define a function called Sum that takes two integers as parameters.
2. Inside the Sum function, return the sum of the two integers.
3. In the Main method, declare two integer variables, x and y, and initialize them with the values 3 and 5, respectively.
4. Call the Sum function from Main with x and y as parameters.
5. Display the result of the Sum function using Console.WriteLine.

Write a C# program whose Main must be like this:

public static void Main()

{
int x= 3;
int y = 5;
Console.WriteLine( Sum(x,y) );
}

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    // Main method where the program execution begins
    public static void Main()
    {
        // Declare two integer variables and initialize them
        int x = 3;
        int y = 5;

        // Call the Sum function with x and y as parameters and display the result
        Console.WriteLine(Sum(x, y));
    }

    // Function to sum two integers and return the result
    public static int Sum(int num1, int num2)
    {
        // Return the sum of the two integers
        return num1 + num2;
    }
}

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

  • C# Program to Count Spaces in a String

    This C# program defines a function called CountSpaces that accepts a string as a parameter and returns the number of spaces in that string. The Main method calls this function with...

  • C# Program to Write Centered Text

    This C# program defines a function called WriteCentered that takes a string as a parameter and writes it centered on the screen, assuming a screen width of 80 characters. The progr...

  • C# Program to Write Centered and Underlined Text

    This C# program defines a function called WriteUnderlined that takes a string as a parameter and writes it centered on the screen, assuming a screen width of 80 characters. After d...

  • C# Program to Calculate the Sum of the Elements in an Array

    This C# program defines a function called Sum that calculates the sum of the elements in an array. The Main method initializes an array with specific integer values and then calls ...

  • C# Function to Double an Integer

    This C# program defines a function named "Double" that accepts an integer as a parameter and returns the integer doubled. The program demonstrates how to work with simple mathemati...

  • C# Function to Double an Integer Using Reference Parameters

    In this C# program, we define a function named "Double" that calculates the double of an integer and modifies the passed argument using reference parameters. The function will be a...