Simple Addition in C#

In this exercise, you will write a basic C# program that performs a simple addition of two numbers, 12 and 13. This will help you understand how to perform basic arithmetic operations in C# and display the result to the user. By the end of this exercise, you will be familiar with the syntax for performing arithmetic operations and how to output the result to the screen in a C# console application. It's a great starting point for beginners to get hands-on experience with C# programming.



Group

Getting Started with C# Programming

Objective

The objective of this exercise is to write a program that calculates the sum of 12 and 13, then prints the result on the screen. This will help you understand how to handle numbers and basic output in C#.

Write a C# program to print the result of adding 12 and 13 on screen.

Example C# Exercise

 Copy C# Code
// This program calculates the sum of 12 and 13 and displays the result
using System;

namespace SimpleAddition
{
    class Program
    {
        // The Main method is where the program starts executing
        static void Main(string[] args)
        {
            // Declare two variables and assign values 12 and 13
            int number1 = 12;
            int number2 = 13;

            // Calculate the sum of the two numbers
            int sum = number1 + number2;

            // Print the result to the console
            Console.WriteLine("The result of adding {0} and {1} is: {2}", number1, number2, sum);

            // 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

The result of adding 12 and 13 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#.

  • Simple Division in C#

    In this exercise, you will write a basic C# program that performs a simple division operation. The program will divide 24 by 5 and display the result. This exercise will help you u...

  • Basic Arithmetic Operations in C#

    In this exercise, you will create a C# program that evaluates and displays the results of several mathematical operations. These operations involve the use of basic arithmetic oper...

  • Multiplying Two User-Entered Numbers in C#

    In this exercise, you will create a simple C# program that takes two numbers as input from the user, multiplies them, and then displays the result. This exercise will help you prac...

  • Multiplying Three Numbers with User Input in C#

    In this exercise, you will write a C# program that asks the user to enter three numbers and displays their multiplication. This exercise helps you practice using formatted output w...

  • Performing Basic Arithmetic Operations in C#

    In this exercise, you will write a C# program that takes two numbers as input from the user and performs various arithmetic operations on them. The program will display the sum, di...

  • Generating a Multiplication Table in C#

    In this exercise, you will create a C# program that prompts the user to enter a number and then displays its multiplication table from 1 to 10. This exercise will help you understa...