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